js or and code example
Example 1: or in js
// The Or operator in Javascript is 2 vertical lines = ||
//Example
var firstnumber = 10;
var secondnumber = 20;
//The Or operator in action
if(firstnumber > 20 || secondnumber< 10) {
}
Example 2: javascript and
var hungry=true;
var slow=true;
var anxious=true;
//&& means and
if(hungry && slow && anxious){
var cause="weed";
}
Example 3: && javascript
// " && " in Javascript is the operator for AND.
Example 4: or operator js
//OR Operator
const x = 7;
const y = 4;
(x == 5 || y == 5); // false
(x == 7 || y == 0); // true
(x == 0 || y == 4); // true
(x == 7 || y == 4); // true