Docs

Namaste JavaScript — Interview Quick Notes

Ep 5: window & this at Global Level


  • The shortest JS program is an empty file — JS still creates a Global EC, a global object (window in browsers), and a this pointing to it.
  • this === window at the global level.
  • var variables declared globally are attached to window; let/const are not.