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