javascript 将Rest运算符与函数参数一起使用

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了javascript 将Rest运算符与函数参数一起使用相关的知识,希望对你有一定的参考价值。

function howMany(...args) {
  return "You have passed " + args.length + " arguments.";
}

console.log(howMany(0, 1, 2));  // you have passed 3 arguments
console.log(howMany("string", null, [1, 2, 3] { }));  // you have passed 4 arguments

以上是关于javascript 将Rest运算符与函数参数一起使用的主要内容,如果未能解决你的问题,请参考以下文章

JavaScript ES6 - 函数扩展

JavaScript ES6 - 函数扩展

arguments对象与Rest参数

[JavaScript语法学习]全面介绍函数

☀️Rest参数和扩展运算符

☀️Rest参数和扩展运算符