1. let, const and block scoping let allows you to create declarations which are bound to any block, called block scoping. Instead of using var , which provides function scope, i...
Whitespace 19.1 Use soft tabs (space character) set to 2 spaces. eslint: indent // bad function foo () { ∙∙∙∙ let name ; } // bad function bar () { ...