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