javascript Or operator as if code example

Example 1: or operator javascript

//|| is the or operator in JavaScript
if(a == 1 || b != 'value'){
    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");}

/* Output:
TRUE
FALSE
TRUE
*/

Example 3: javascript if or

let A = 1;
let B = 0;
if (A == 1 || B == 1){
  	// some code here
}