What value is printed when executing the following code?
let h = 1, l = 2;
let o = (h < l) && (h === l) || (h <= l);
console.log(o);
What value is printed when executing the following code?
let h = 1, l = 2;
let o = (h < l) && (h === l) || (h <= l);
console.log(o);