Skip to content

Global Context

In the global execution context (outside any function), this refers to the global object. In browsers, that’s window; in Node.js, it’s global. In strict mode, it remains the global object.

console.log(this === window); // true (in browser)