📜  .shift javascript 代码示例

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

代码示例3
// example (remove the last element in the array)
let yourArray = ["aaa", "bbb", "ccc", "ddd"];
yourArray.shift(); // yourArray = ["bbb", "ccc", "ddd"]

// syntax:
// .shift();