Skip to content

Latest commit

 

History

History
15 lines (11 loc) · 428 Bytes

not.md

File metadata and controls

15 lines (11 loc) · 428 Bytes

Not

Booleans can also be "negated" using the "not" operator - !.

booleanhaveOreosInHouse = true; booleanstuckToCalorieLimit = !haveOreos;

So in this case, I have stuck to my calorie limit if there are not Oreos in the house.

haveOreosInHousestuckToCalorieLimit
falsetrue
truefalse
close