$nor
The$nor operator evaluates multiple expressions and returns true only if all of them are falsy, otherwise it returns false. It’s the negation of the $or operator.
Input
- An array of expressions to evaluate
- Each expression is evaluated in order from left to right
Output
trueif all expressions evaluate to falsy valuesfalseif any expression evaluates to a truthy value
Examples
All Falsy Values
true
With Truthy Value
false
Multiple Expressions
true if the score is NOT less than 10 AND NOT greater than 90 (i.e., score is between 10 and 90 inclusive), otherwise false
