# Variables

# Use const by default

Variables should be declared with const by default. let should only be used when a variable needs to be reassigned.

# Never use var

var has confusing scoping rules and should never be used.