0 / 60 seg.

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);