JS and or 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: or statment javscript

if (x === 5 || x === 8)
  console.log("x is eaqual to 5 OR 8")

Example 4: 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 5: && javascript

// " && " in Javascript is the operator for AND.

Example 6: and operator in javascript

//& (bitwise AND) operator
console.log(5 & 13); //outout: 5
/*
5  = 0101 (base 2)
13 = 1101 (base 2)
//AND every bit together from both numbers
+----+
|0101|
|1101|
+----+
|0101|
+----+
0101 = 5 (base 10)
*/