You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardexpand all lines: README.md
+19
Original file line number
Diff line number
Diff line change
@@ -412,3 +412,22 @@ console.log(newCarColor)
412
412
413
413
//You can use this syntax today using @babel/plugin-proposal-optional-chaining
414
414
```
415
+
416
+
# globalThis
417
+
```javascript
418
+
Accessing the global property in JavaScript has always posed some difficulty. This is because
419
+
different platforms have different ways to access it.
420
+
421
+
Client-side JavaScript uses window or self
422
+
423
+
Node.js uses global
424
+
425
+
Web workers use self
426
+
427
+
The globalThis property provides a standard way of accessing the global'this' value across environments. you can access the global object in a consistent manner without having to know which environment the code is being run in.
428
+
429
+
console.log(globalThis) //get the global this depends on your environment
0 commit comments