如何在 JavaScript 中创建带有可变参数的函数?
我想在 javascript 中创建一个具有可变数量参数的函数。下一个例子是我想如何调用这个函数:
myFunction(1,2);
myFunction(1,2,3);
myFunction(1,2,3,4);
myFunction(1,2,3,4,5);
myFunction(1,2,3,4,5,6);
有人知道如何定义这个函数吗?
I want to create a function in javascript with a variable amount of arguments. The next example is how I want to call this function:
myFunction(1,2);
myFunction(1,2,3);
myFunction(1,2,3,4);
myFunction(1,2,3,4,5);
myFunction(1,2,3,4,5,6);
Anyone knows how to define this function?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(6)
您可以通过参数的序号位置访问参数,而无需在原型中声明它们,如下所示:
或者,如果您确实要传递一组语义相关的数字,则可以使用数组;
You can access the arguments by their ordinal position without the need to state them in the prototype as follows:
Or if you really are passing in a set of semantically related numbers you could use an array;
最新更新的
所有新浏览器均支持 其余参数。
查看此处了解详细信息
剩余参数语法允许我们将无限数量的参数表示为数组,您也可以将其传递给其他函数。
Latest update
Rest parameters are supported in all new browsers.
Check here for details
The rest parameter syntax allows us to represent an indefinite number of arguments as an array, which you can pass it to other functions too.
像这样使用“arguments”变量:
像之前一样调用方法
Use the 'arguments' variable like this :
Call the methods as you did before
只需参考参数数组即可。
https://developer.mozilla.org/en/JavaScript/Reference/functions_and_function_scope/arguments
Just refer to the arguments array.
https://developer.mozilla.org/en/JavaScript/Reference/functions_and_function_scope/arguments
如果不存在参数,则使用默认值。像这样...
If an argument is not present, use the default. Like this...
作为附加组件:您可以为未命名的函数参数赋值,如 (德语 wiki)< /a>
As an add-on: You can assign values to the unnamed function parameters, as in (german wiki)