I would like to ask why
alert(3>2>1); // (1)
Is returning FALSE in Javascript.
I know that the correct is:
alert(3>2 && 2>1); // (2)
But the code 1 should return either an error message or either TRUE! Is there a specific reason that this equation returns FALSE?