denysdovhan / wtfjs

🤪 A list of funny and tricky JavaScript examples
http://bit.ly/wtfjavascript
Do What The F*ck You Want To Public License
34.75k stars 2.55k forks source link

`window.window.window...` #221

Closed SiddharthShyniben closed 2 years ago

SiddharthShyniben commented 2 years ago
window.window.window.window.window.window.window.window.window.window.window.window.window.window // -> window 

💡 Explanation

window always returns the global scope, and the window of the global scope is also... window

denysdovhan commented 2 years ago

Please, add a PR, if you consider this example a useful one.