Logical or

From Market Ruler Help
Revision as of 23:57, 27 October 2018 by Admin (talk | contribs) (Created page with "A '''Logical Or''' is the result of a series of conditions which, when '''any condition''' evaluates to '''true''', the result evaluates to '''true'''. The only time a '''Logi...")
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)
Jump to: navigation, search

A Logical Or is the result of a series of conditions which, when any condition evaluates to true, the result evaluates to true. The only time a Logical Or expression evaluates to false is when all conditions evaluation to false.

Specifically:

  • true or true = true
  • true or false = true
  • false or true = true
  • false or false = false

See Logical disjunction (OR)