Variables

A VARIABLE is a NAME for an object. You give an object a name using the ASSIGNMENT operator (it looks like an equal sign).

color = "blue"
fruit = "berry"

Anywhere you can use an object, you can use a variable instead.

color + fruit
fruit.upcase
[menu]

1/12