首页 > 其他分享 >ES6-ES11 ES11绝对全局对象globalThis

ES6-ES11 ES11绝对全局对象globalThis

时间:2023-03-11 16:22:50浏览次数:48  
标签:ES6 console log globalThis ES11 全局

原视频

忽略变量环境,引用全局变量

html

<!DOCTYPE html>
<html lang="en">
<head>
    <meta charset="UTF-8">
    <meta name="viewport" content="width=device-width, initial-scale=1.0">
    <title>globalThis</title>
</head>
<body>
    <script>
        console.log(globalThis);
    </script>
</body>
</html>

js

console.log(globalThis);

标签:ES6,console,log,globalThis,ES11,全局
From: https://www.cnblogs.com/chuixulvcao/p/17206311.html

相关文章