美文网首页
js问题辑录---return 返回链

js问题辑录---return 返回链

作者: 切磋琢磨_FE | 来源:发表于2017-08-07 10:50 被阅读0次

    1. 在一个function中返回另一个function的执行,会返回该函数还是返回该函数的执行结果?

    function a(){
        return b();
    }
    function b(){
        return 'this is b';
    }
    
    a() //" this is b";
    
    

    如果有很多函数连续return,会怎么样?

    function a(){
        return b();
    }
    function b(){
        return c();
    }
    function c(){
        return d();
    }
    function d(){
        return "this is d";
    }
    a() // "this is d";
    

    这样就形成了一个返回链,将多个function链起来了。

    相关文章

      网友评论

          本文标题:js问题辑录---return 返回链

          本文链接:https://www.haomeiwen.com/subject/kfvolxtx.html