📜  javascript 将项目推送到数组的开头 - Javascript 代码示例

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

代码示例3
// 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);