ORder doesn't matter
by cinderwell
JavaScript
//let's say these are our 3 conditions
var a = false;
var b = true;
var c = false;
//lets try different combinations of OR
var result1 = (a || b || c);
var result2 = (b || c || a);
var result3 = (c || b || a);
document.write(result1);
document.write('<br>');
document.write(result2);
document.write('<br>');
document.write(result3);