JS: globalThis

By Xah Lee. Date: . Last updated: .

globalThis

new in JS2020

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

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

JavaScript, global object