首页 > 其他分享 >函数的嵌套

函数的嵌套

时间:2022-10-29 14:55:19浏览次数:45  
标签:function console log 嵌套 hello 函数

函数的嵌套

函数是可以互相嵌套的

function fn(){
    function fn1(){
        console.log('hello')
       //fn(3) //报错
    }
    function fn2(){
        console.log('hello')
        function fn3(){
            console.log('hello')
        }
    }
    fn1()
    console.log('world')
}
fn() //hello  world

 

注:在函数内部可以定义函数和调用的函数, 函数内部不能调用优先级比自己要低的

 

 

 

 

 

 

 

 

 

 

 

 

标签:function,console,log,嵌套,hello,函数
From: https://www.cnblogs.com/hofenglang/p/16838722.html

相关文章