js logical and operator code example
Example 1: js logical operators
Javascript Logical Operators
&& Logical and
|| Logical or
! Logical not
Example 2: or operator javascript
//|| is the or operator in JavaScript
if(a == 1 || b != 'value'){
yourFunction();
}