You are on page 1of 1

Combining Conditions

Condition A AND Condition B OR Condition C

name === ‘Max’ && age === 30 || isAdmin

Part 1 Part 2

Evaluated as an
Evaluated together (yields true if each condition yields true)
alternative

Yields true if Part 1 OR Part 2 yields true

You can use parentheses to control what’s evaluated together!

You might also like