// These are true
console.log(window === this)
console.log(window === self)
console.log(this === self)
console.log(window === this === self) // Why is this false?
window is equal to this,window is equal to self, andthis is equal to self
So, why is window === self === this false in JavaScript