Status
Tech review

Style guide




On this page


Overview

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


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