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

function test(a){
    console.log(a)
    var a=1
    console.log(a)
    function a(){

    }
    console.log(a)
    var b=function(){}
    console.log(b)
    function d(){

    }
}
//AO
//AO={
//   a:undefined->2->function a(){}->1
//   b:undefined->function b(){}
//   d:function d(){}
//}
//
test(2)

运行结果

 

posted @ 2023-11-04 11:56  前端导师歌谣  阅读(2)  评论(0编辑  收藏  举报  来源