Home | Mailing List | Blog | Tutorial Videos

Operator Associativity

Given the following lines, what will be the output?

console.log(1 < 2 < 3);
console.log(3 > 2 > 1);

Select one: