function test(a,b){ console.log(test.length)//形参的个数 2 console.log(arguments.length)//实参的个数 3 } test(1,3,4)
js函数的形参与实参个数可以不相等