📌  相关文章
📜  javascript 数组添加前面 - Javascript 代码示例

📅  最后修改于: 2022-03-11 15:01:31.230000             🧑  作者: Mango

代码示例4
// Use unshift method if you don't mind mutating issue
// If you want to avoid mutating issue
const array = [3, 2, 1]

const newFirstElement = 4

const newArray = [newFirstElement].concat(array) // [ 4, 3, 2, 1 ]

console.log(newArray);