Skip to content

输出什么?

Posted on:2021年7月3日 at 22:27
function getItems(fruitList, ...args, favoriteFruit) {
  return [...fruitList, ...args, favoriteFruit]
}

getItems(["banana", "apple"], "pear", "orange")

... args是剩余参数,剩余参数的值是一个包含所有剩余参数的数组,并且只能作为最后一个参数。上述示例中,剩余参数是第二个参数,这是不可能的,并会抛出语法错误。

function getItems(fruitList, favoriteFruit, ...args) {
  return [...fruitList, ...args, favoriteFruit];
}
getItems(["banana", "apple"], "pear", "orange");

上述例子是有效的,将会返回数组:[ 'banana', 'apple', 'orange', 'pear' ]

原文转自:https://fe.ecool.fun/topic/37021e43-c8e8-4664-afa2-0c16eee6e4b2