arguments
类数组对象
length
arguments获取实际参数的数量: arguments.length;
function fn(a,b){ console.log(arguments) } fn(3,4)