前端歌谣-第贰拾伍课-作用域和作用域链条
前言
我是歌谣 最好的种树是十年前 其次是现在 今天继续给大家带来的是作用域的讲解
环境配置
npm init -y
yarn add vite -D
修改page.json配置端口
{
"name": "demo1",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"dev": "vite --port 3002"
},
"keywords": [],
"author": "",
"license": "ISC",
"devDependencies": {
"vite": "^4.4.9"
}
}
案例1
function a(){
function b(){
var b=2
}
var a=1;
b()
}
a()
分析