I saw that line in some code
window.a = window.b = a;
How does it work?
Does the following always return true?
win
Same as:
window.b = a; window.a = a;
And no, window.a and a is not always equal. Typically it is only equal on the global scope in a web browser JavaScript interpreter.
window.a
a