javascript ES6 - 在函数中传播运算符

Posted

tags:

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

const heroes = ['Black Widow', 'Thor', 'Scarlet Witch', 'Vision'];
const newHeroes = ['Falcon', 'War Machine'];
heroes.push(...newHeroes);
console.log(heroes);

const hero = ['Thor', 'Odinson'];
function sayName(first, last) {
console.log(`Welcome, ${first} ${last}`);
}

sayName(...hero);

以上是关于javascript ES6 - 在函数中传播运算符的主要内容,如果未能解决你的问题,请参考以下文章

javascript ES6 - `...`传播运算符

不传播的原因是啥(es 6传播运算符)javascript错误对象[重复]

前端开发技能 —— JavaScript / ES6

为啥我不能在 JavaScript/ES6 中使用带有箭头函数的`new`? [复制]

JavaScript ES6 - 函数扩展

JavaScript ES6 - 函数扩展