Javascript Notes #1
Javascript Notes #1
Variable Declarations
Hoisting
- JS Hoisting refers to the process in wich the interpreter apears to move the
declaration of functions variables or classes to the top of thier scope, prior to
execution of the code
Naming Rules
- When declaring variablels it is important to use clear names that are easy to
find or define
- propper variable naming can improve the readability of code
Scopes