Used to declare a variable, optionally initializing it to a value. Subject to hoisting in the scope context where it is declared.
Back
Keyword: const
Front
Used to declare a block scope variable that cannot be reassigned or re-declared
Back
this.method()
Front
Back
Parts of function: namePrinter (name) {console.log(name}
Front
namePrinter = descriptive name of the function, name = parameter, the name of the argument(s) to be passed into the function, console.... = code statements that comprise the body of the function
Back
Keyword: function ()
Front
Defines a function with the specified parameters
Back
Keyword: let
Front
Used to declare a block scope local variable, optionally initializing it to a value