like normal math, I tried to log this code in the console and I expected to get the value true
console.log(12>11>=10)
but what I got was false
however when I tried to log console.log(12>11&&11>=10)
I got true
so for the last time, I tried console.log( (12>11&&11>=10) == (12>11>=10) )
and i got flase
so my question is :
why in javascript (12>11&&11>=10) does not equal to (12>11>=10) ?!
and I hope anyone can help