I saw that line in some code
window.a = window.b = a;
How does it work?
Does the following always return true?
win
Actually, window.a==a can be false if a has the value Number.NaN. That's because Number.NaN is not equal to any value, including itself.
window.a==a
a
Number.NaN