JavaScript ES6 Tutorial #3 - The Let Keyword

Yo ninjas, in this Ecmascript 6 tutorial, I’ll be introducing you to the ’let’ keyword. The let keword allows us to create a variable with lexical scope, which essentially means that the variable does not ignore code blocks. When we create a variable using the let keyqord within a code block, the variable is said to have lexical scope, and only applies WITHIN that code block. ----- COURSE LINKS: Chrome Canary - Brackets editor -
Back to Top