PHP中有func_num_args和func_get_args, JavaScript中也有类似的东西吗?
当前回答
正如许多人指出的那样,参数包含传递给函数的所有参数。
如果您想调用另一个具有相同参数的函数,请使用apply
例子:
var is_debug = true;
var debug = function() {
if (is_debug) {
console.log.apply(console, arguments);
}
}
debug("message", "another argument")
其他回答
在ES6中,你可以这样做:
函数foo (args…) { Let [a,b,…c] = args; console.log (a, b, c); } Foo (1, null,"x",true, undefined);
如果您愿意,还可以将其转换为数组。如果Array泛型可用:
var args = Array.slice(arguments)
否则:
var args = Array.prototype.slice.call(arguments);
来自Mozilla MDN:
您不应该对参数进行切片,因为这会阻止在 JavaScript引擎(例如V8)。
arguments对象是存储函数参数的地方。
arguments对象的行为和看起来像一个数组,它基本上是,它只是没有数组的方法,例如:
Array。forEach (callback黑,thisArg铝);
阵列。(回调,thisArg文件夹)
Array。filter (callback黑,thisArg铝);
数组中。片(开始[结束])
数组中。indexOf (searchElement [, fromIndex])
我认为将arguments对象转换为真实数组的最好方法如下:
argumentsArray = [].slice.apply(arguments);
这将使它成为一个数组;
可重用:
function ArgumentsToArray(args) {
return [].slice.apply(args);
}
(function() {
args = ArgumentsToArray(arguments);
args.forEach(function(value) {
console.log('value ===', value);
});
})('name', 1, {}, 'two', 3)
结果:
> value === name > value === 1 >值===对象{} > value === 2 > value === 3
是的,如果你不知道在函数声明时可能有多少参数,那么你可以声明不带形参的函数,并且可以通过函数调用时传递的参数数组访问所有变量。
ES6允许使用“…”符号指定函数参数的构造,例如
function testArgs (...args) {
// Where you can test picking the first element
console.log(args[0]);
}
推荐文章
- 如何使用Jest测试对象键和值是否相等?
- 将长模板文字行换行为多行,而无需在字符串中创建新行
- 如何在JavaScript中映射/减少/过滤一个集?
- Bower: ENOGIT Git未安装或不在PATH中
- 段树、区间树、二叉索引树和范围树之间有什么区别?
- 添加javascript选项选择
- 在Node.js中克隆对象
- 为什么在JavaScript的Date构造函数中month参数的范围从0到11 ?
- 使用JavaScript更改URL参数并指定默认值
- 我如何才能找到一个Python函数的参数的数量?
- 在window.setTimeout()发生之前取消/终止
- 确定bash中是否存在一个函数
- 如何删除未定义和空值从一个对象使用lodash?
- 给定一个数字,找出下一个与原始数字具有完全相同的数字集的更高的数字
- 检测当用户滚动到底部的div与jQuery