函式閉包

weixin_33807284發表於2018-07-04

定義形式:

1.
function  mothod_name(){
    程式碼塊;
}
2.匿名函式表示式
var mothod_name=function(){
    程式碼塊;
}
3.命名函式表示式
var text = function mothod_name(){
    程式碼塊;
}
eg: function  first(){
      document.write("HelloWorld");      
    }
  • 傳入實參時實參可多於形參也可少於形參
實參列表: Arguments

相關文章