前端学习笔记202310学习笔记第一百壹拾天-函数参数默认值&递归&预编译流程&原理&现象&按时全局变量之31
function test(){
console.log(b)
if(a){
var b=2
}
c=3;
console.log(c)
}
var a;
test()
a=1
console.log(a)
// AO{
//
// b:undefined-->2
//
//}
//GO{
// a:undefined-->1
// test:function test(){}
// c:3
//}
运行结果