Storing and managing information in your programs
A variable is like a labeled box that can store different types of information. You can put something in the box, check what's inside, or replace the contents with something else.
let
and constants with const
string
const string
🔒 constant
number
boolean
Variable: count = 0
let
for values that will changeconst
for values that stay the samename
≠ Name