
Variables store data. JavaScript has three keywords: var (old, avoid it), let (use for values that change), and const (use for values that never change). Always prefer const by default — switch to let only when you know the value will be reassigned. Never use var in modern code.
Reference:
TaskLoco™ — The Sticky Note GOAT