Constants

'const' is similar to 'let' but is for constant values that are immutable. They can't be assigned a new value.

const INTEREST_RATE = 0.0783;
INTEREST_RATE = 0.0788; // Uncaught TypeError: Assignment to constant variable.

You can't simply declare a constant value; you have to initialize it, or assign, it a value at the same time.