var arr = [1,2,3,5,6];
I want to remove the 1st element of the array so that it becomes:
var arr = [2,3,5,6];
How?
Edit
To extend this question, what if I want to remove the 2nd element of the array?
I want to remove the 1st element of the array so that it becomes:
How? EditTo extend this question, what if I want to remove the 2nd element of the array? |
||||
|
Use the splice function:
|
|||||||||||||||
|
|
|
|||||||||||||||||||||
|
|
The
|
|||||
|
|
Wrote a small article about inserting and deleting elements at arbitrary positions in Javascript Arrays. Here's the small snippet to remove an element from any position. This extends the Array class in Javascript and adds the remove(index) method.
So to remove the first item in your example, call arr.remove():
To remove the second item,
Here's a tiny article with insert and delete methods for Array class. Essentially this is no different than the other answers using splice, but the name |
||||
|
|
is non destructive, splice and shift will modify your original array |
|||
|
|
arr.unshift()orarray.slice(0,1). to remove the second:arr.slice(1,1). the syntax for arr.slice isslice(where_to_start_removing, how_many_to_remove)– Ped Jul 21 '12 at 17:02slice(start, end)not 'how_many_to_remove' – seanjacob Feb 20 at 12:11