js 函数参数形式时间:2021-04-06 03:27:471. var a = function(b,c){ console.log(arguments);}a("1","cc"); -> ["1", "cc"] //arguments js的参数放在arguments这个数组里