参数arguments
Posted 西风.烈马
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了参数arguments相关的知识,希望对你有一定的参考价值。
1.定义方发log,输出log("hello world");
function log(msg){
console.log(msg);
}
2.传入多个参数log("hello", "world"):
function log(){
console.log.apply(console, arguments);
}
3.给每个log消息添加“(app)”前缀:
function log(){
var args = Array.prototype.slice.call(arguments); //将参数数组由伪数组转化为标准数组
args.unshift("(app)");
console.log.apply(console, args);
}
以上是关于参数arguments的主要内容,如果未能解决你的问题,请参考以下文章
js的隐含参数(arguments,callee,caller)使用方法
function 之 arguments call apply