Booleans
A boolean
is either true
or false
.
boolean onFleek = true;
boolean badVibes = false;
This is used to represent situations where there are exactly two possible states.
A boolean
is either true
or false
.
boolean onFleek = true;
boolean badVibes = false;
This is used to represent situations where there are exactly two possible states.