mirror of
https://github.com/alrayyes/wiki.git
synced 2024-11-21 19:16:23 +00:00
377 B
377 B
date | id | title |
---|---|---|
2020-11-16 | 828f0c1c-f17a-40fe-9926-50b87a2551a9 | globalThis |
Description
This eases yet another JavaScript pita. Replaces the different global object names:
window
(browser)global
(node)self
(web workers)
with globalThis
.
Syntax
if (typeof globalThis.alert === "function") {
globalThis.alert("hi");
}