🏷️globalThis
Last updated
Was this helpful?
Last updated
Was this helpful?
Was this helpful?
JS ⟩ scope ⟩ global ⟩ object ⟩ globalThis
identifier for the global object, regardless of the current context and environment.
replit:theGlobalObject
// define a cross-environment polyfill that's safer
// across pre-globalThis JS environments
const theGlobalObject =
(typeof globalThis !== "undefined") ? globalThis : // ES2020
(typeof global !== "undefined") ? global