Boolean data types

A bool is another type of data like string or number. It has a special meaning, it can only be either True or False.

isRaining = False
happy = True
finishedCounting = False

It's is also called a boolean.