鉴于此功能:
function foo( a,b,c ) {
//
}
你怎么能做某事,比如对每个参数使用 console.log() ?我知道您可以使用 arguments 关键字来查看参数。参数似乎返回看起来像数组的东西(但类型为“对象”[suprise.. not]),但它不支持.forEach,我使用的是 Chrome。
我尝试将函数修改为此,并希望它能够工作:
function foo( a,b,c ) {
arguments.forEach(function( arg ){
console.log( arg );
});
}
你得到 TypeError: Object # has no method 'forEach' 的错误。