mirror of
https://github.com/alrayyes/wiki.git
synced 2024-11-22 03:26:22 +00:00
360 B
360 B
id | title |
---|---|
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");
}