Variables
Naming
- case-sensitive
- must start with _, $, or a letter
- can only contain letters, digits, _, and $
- no spaces allowed
- cannot use reserved keywords
Best Practices
- use camelCase
- global, immutable variables all UPPERCASE
Syntax
You use let for mutable variable declaration and const for immutable. While it's possible to declare a variable without a keyword (name = "Dean") or
by using var, those are legacy methods and you should not use them.