Good article and well organized. As of var & let I tend to use var when I want a variable to be visible in the whole application or scope and leave let for loops or variables inside functions. And for functions I only tend to use arrow/fat function whenever I want to use the global/local this.
For further actions, you may consider blocking this person and/or reporting abuse
We're a place where coders share, stay up-to-date and grow their careers.
Good article and well organized. As of
var&letI tend to usevarwhen I want a variable to be visible in the whole application or scope and leaveletfor loops or variables inside functions. And for functions I only tend to use arrow/fat function whenever I want to use the global/localthis.