or statment javscript

JavaScript
if (x === 5 || x === 8)
  console.log("x is eaqual to 5 OR 8")var hungry=true;
var slow=true;
var anxious=true;

//&& means and
if(hungry && slow && anxious){ 
	var cause="weed";
}if (5 < 10) {
	console.log("5 is less than 10");
} else {
	console.log("5 is now bigger than 10")
}let A = 1;
let B = 0;
if (A == 1 || B == 1){
  	// some code here
}
Source

Also in JavaScript: