📜  如何使用 unshift() 和 shift() - 任何代码示例

📅  最后修改于: 2022-03-11 14:58:09.030000             🧑  作者: Mango

代码示例2
//to add the first item to a array 

let top_salespeople = ['Lucy', 'Graham', 'Carol', 'Ann'];
top_salespeople.unshift('Hannah');

console.log(top_salespeople);