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"
- Cách xóa mảng đầu tiên nhưng trả lại mảng trừ phần tử đầu tiên
- Trong ví dụ của tôi, tôi sẽ nhận được
"item 2", "item 3", "item 4"
khi xóa phần tử đầu tiên
alert(array.slice(1))
hoặcarray.shift(); alert(array);