Skip to content
Snippets Groups Projects
logical_or 281 B
NAME
	|| - logical or

SYNTAX
	a || b


DESCRIPTION
	This operator does logical 'or' between expressions. It first
	evaluates a and returns that if a is non-zero. Otherwise it
	returns b. Note that b is not evaluated at all if a is non-zero.

KEYWORDS
	operators

SEE ALSO
	`|, &&