📅  最后修改于: 2022-03-11 14:58:09.030000             🧑  作者: Mango
//to add the first item to a array
let top_salespeople = ['Lucy', 'Graham', 'Carol', 'Ann'];
top_salespeople.unshift('Hannah');
console.log(top_salespeople);