JS: globalThis

By Xah Lee. Date: . Last updated: .

globalThis

(new in ECMAScript 2020)

globalThis is a variable that is alias to the the Global Object .

console.log(globalThis);
// window
// in browser

JavaScript. global object