Skip to content

下面那个选项将会返回 '6' ?

Posted on:2024年8月18日 at 12:41
function sumValues(x, y, z) {
  return x + y + z;
}

通过展开操作符 ...,我们可以 展开 单个可迭代的元素。函数 sumValues function 接收三个参数: x, yz...[1, 2, 3] 的执行结果为 1, 2, 3,将会传递给函数 sumValues

原文转自:https://fe.ecool.fun/topic/f57f9350-c543-46e3-8419-1ea5ab453971