美文网首页
函数闭包

函数闭包

作者: 极客_Ls | 来源:发表于2018-07-04 09:06 被阅读5次

    定义形式:

    1.
    function  mothod_name(){
        代码块;
    }
    2.匿名函数表达式
    var mothod_name=function(){
        代码块;
    }
    3.命名函数表达式
    var text = function mothod_name(){
        代码块;
    }
    eg: function  first(){
          document.write("HelloWorld");      
        }
    
    • 传入实参时实参可多于形参也可少于形参
    实参列表: Arguments

    相关文章

      网友评论

          本文标题:函数闭包

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