Categories Javascript
ES6 Javascript Tips for Lightning Web Component Developers
Variables
ES6 introduced let and const keywords for defining variables.
let: Allows to declare a variable with block scope.
Eg: This will throw an error saying 'x is not …