Yes or no
A boolean is the simplest kind of value: it's either true or false, with no quotes. Booleans answer yes/no questions (*is the game over? is the door open?*) and they're the foundation for making decisions later.
NOTE
true and false are keywords. Never put them in quotes. "true" (with quotes) is a *string*, which is a different thing entirely.