Skip to content
个人博客
Main Navigation
前端开发
基本功
JavaScript
ECMAScript
TypeScript
网络通信
浏览器
Css
HTML
工程化
优化
系统
Linux
源码阅读系列
Vue2系列
Vue
VueRouter
Vuex
Vue3系列
Vue3
Pinia
React
React17
ReactRouterV6
Webpack
其他
环境
CSS
uniApp
Vue-JSX
Vite和Vue3升级
Appearance
Menu
Return to top
On this page
Table of Contents for current page
globalThis(关键字)
现在JavaScript可以运行于两套环境:
浏览器环境
,
NodeJs环境
web环境 : window
nodejs环境 : global
globalThis的作用就是
web环境 : globalThis === window
nodejs环境 :globalThis === global