and or operator in javascript code example
Example 1: less than or equal to javascript
if(a <= 5){
yourFunction();
}
Example 2: or operator javascript
var a = 2;
var b = 5;
var c = 10;
if (a === 3 || a === 2) {
console.log("TRUE");
} else {console.log("FALSE");}
if (a === 4 || b === 3 || c === 11) {
console.log("TRUE");
} else {console.log("FALSE");}
if (b === 5 || c != 10) {
console.log("TRUE");
} else {console.log("FALSE");}
Example 3: and operator in javascript
var a = true
var b = ""
var c = 1
true && ""
"" && 1
false && 5
Example 4: or operator js
const x = 7;
const y = 4;
(x == 5 || y == 5);
(x == 7 || y == 0);
(x == 0 || y == 4);
(x == 7 || y == 4);