You are viewing an old version of this page. View the current version.

Compare with Current View Page History

« Previous Version 2 Next »


Status
Tech review

TODO

Style guide

TODO

TODO

READY FOR REVIEW

DONE

FLAGGED

On this page

Overview

Boolean expressions, or logical expressions, will always return or accept one of two distinct values: true or false

Simple examples
ExpressionBoolean value
3 < 5true
3 > 5false
"It is Monday"true if it is actually Monday, false otherwise
"It is Sunday"true if it is actually Sunday, false otherwise