文档09_Javascript重载
arguments.length使用该arguments获取参数集合,实现重载
function test() { if(arguments.length==0) { alert("0"); } if(arguments.length==1) { alert("1"); } } test(); test(1)
因缘际会的相遇,自当有非同寻常的结局
QQ交流群:110826636
arguments.length使用该arguments获取参数集合,实现重载
function test() { if(arguments.length==0) { alert("0"); } if(arguments.length==1) { alert("1"); } } test(); test(1)