1.
var a = function(b,c){ console.log(arguments);}a("1","cc");
-> ["1", "cc"]
//arguments js的参数放在arguments这个数组里