📅  最后修改于: 2022-03-11 15:03:03.090000             🧑  作者: Mango
// example (remove the last element in the array)
let yourArray = ["aaa", "bbb", "ccc", "ddd"];
yourArray.shift(); // yourArray = ["bbb", "ccc", "ddd"]
// syntax:
// .shift();