how to make an if statement to check if something is equal to a or b js code example
Example: javascript if or
let A = 1;
let B = 0;
if (A == 1 || B == 1){
// some code here
}
let A = 1;
let B = 0;
if (A == 1 || B == 1){
// some code here
}