javascript 使用Spread Operator复制数组

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了javascript 使用Spread Operator复制数组相关的知识,希望对你有一定的参考价值。

let thisArray = [true, true, undefined, false, null];
let thatArray = [...thisArray];
// thatArray equals [true, true, undefined, false, null]
// thisArray remains unchanged, and is identical to thatArray

以上是关于javascript 使用Spread Operator复制数组的主要内容,如果未能解决你的问题,请参考以下文章

javascript 使用Object spread向对象添加新属性

javascript 使用spread运算符复制对象或数组

javascript 使用Spread运算符来就地评估阵列

javascript JavaScript Spread运算符

[Javascript] Conditionally spread entries to a JavaScript object

javascript 将数组与Spread运算符组合在一起