前端学习笔记202310学习笔记第一百壹拾天-函数参数默认值&递归&预编译流程&原理&现象&按时全局变量之29

a=1
function test(){
    console.log(a)
    a=2
    console.log(a)
    var a=3
    console.log(a)
}
test()
var a;
//GO{
//  a:undefined--->1
// test:function test(){}
//}
//AO{
//  a:undefined--->2--->3
//
//}

运行结果

 

posted @ 2023-11-05 21:30  前端导师歌谣  阅读(4)  评论(0编辑  收藏  举报  来源