1.声明式函数:function test(){};
2.表达式函数:var test=function(){}
例:function test(a,b){}
test(2,3,4)
->函数的形参和实参是可变的
函数内参数参数列表:
1.实参列表:在函数内用arguments表示,如上例:arguments=[2,3,4]
2.在函数内test.length表示形参列表长度
原文地址:https://www.cnblogs.com/fangming/p/8847650.html
时间: 2024-10-01 06:20:11