var myarray = ["item 1", "item 2", "item 3", "item 4"];
//removes the first element of the array, and returns that element.
alert(myarray.shift());
//alerts "item 1"
//removes the last element of the array, and returns that element.
alert(myarray.pop());
//alerts "item 4"
- วิธีลบอาร์เรย์แรก แต่ส่งคืนอาร์เรย์ลบองค์ประกอบแรก
- ในตัวอย่างของฉันฉันควรจะได้รับ
"item 2", "item 3", "item 4"
เมื่อฉันลบองค์ประกอบแรก
alert(array.slice(1))
หรือarray.shift(); alert(array);