Global Object

A global object is an object that always exists in the global scope. page

In JavaScript, there's always a global object defined. In a web browser, when scripts create global variables defined with the `var` keyword, they're created as members of the global object. (In Node.js this is not the case.) The global object's interface depends on the execution context in which the script is running. For example: * In a web browser, any code which the script doesn't specifically start up as a background task has a Window as its global object. This is the vast majority of JavaScript code on the Web. * Code running in a Worker has a WorkerGlobalScope object as its global object. * Scripts running under Node.js have an object called global as their global object.

**Note**: Unlike `var`, the statements `let` and `const` do not create properties of the global object.