Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.
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?

share|improve this question
3  
to remove the first: arr.unshift() or array.slice(0,1). to remove the second: arr.slice(1,1). the syntax for arr.slice is slice(where_to_start_removing, how_many_to_remove) – Ped Jul 21 '12 at 17:02
slice(start, end) not 'how_many_to_remove' – seanjacob Feb 20 at 12:11
2  
@Ped arr.unshift() doesnt REMOVE, but "Adds one or more elements to the beginning of an array" – psycho brm Feb 26 at 13:28

6 Answers

up vote 70 down vote accepted

Use the splice function:

var indexToRemove = 0;
var numberToRemove = 1;

arr.splice(indexToRemove, numberToRemove);
share|improve this answer
And the follow-on question: arr.splice(1,1) for the second element. – slebetman Jan 5 '10 at 2:42
But it doesn't work for this case:var arr = [[1,2,3]]; arr[0].slice(1,1); arr[0] – user198729 Jan 5 '10 at 2:53
4  
splice, not slice – Gabriel McAdams Jan 5 '10 at 2:54
1  
Oh,it works!Great! – user198729 Jan 5 '10 at 2:56
I prefer splice() over shift() because its more flexible. I may want to do something different in the future, and not always do I want to remove only one element, or even the first element. – Gabriel McAdams May 24 '12 at 23:39

shift() removes the first element of an array and returns a new array minus the first element from the original.

arr = [1, 2, 3, 4, 5];
arr.shift();

alert(arr); // [2, 3, 4, 5]
share|improve this answer
22  
@Gabriel: wasn't exactly that the question? I prefer shift() to splice(..., ...) since it is much more explicit, direct. – Bruno Reis Jan 5 '10 at 3:21
3  
He asked two separate questions in my opinion, shift() solves the original. there are a multitude of ways to solve the second, splice being the best. – Joseph Silvashy Jan 5 '10 at 4:37
4  
This answers the question stated in the title, which is the answer that most people finding this question from a search will be looking for. – Chris Dutrow Jun 12 '12 at 16:54
1  
This should be marked best answer. – Joshua Lambert Nov 27 '12 at 6:12
3  
Correction: It returns first element, not a new array minus the first element, as per the link you provided :) – DanH Dec 27 '12 at 8:38
show 2 more comments

The Array.shift() element removes the first element from an array, and returns it. It modifies the original array.

var a = [1,2,3]
// [1,2,3]
a.shift()
// 1
a
//[2,3]
share|improve this answer
1  
A great improvement on Joseph Silvashy's answer - no inconsistencies between description and code. – mklement Jan 29 at 17:00

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.

// Remove element at the given index
Array.prototype.remove = function(index) {
    this.splice(index, 1);
}

So to remove the first item in your example, call arr.remove():

var arr = [1,2,3,5,6];
arr.remove(0);

To remove the second item,

arr.remove(1);

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 splice is non-intuitive, and if you have that call all across your application, it just makes the code harder to read.

share|improve this answer
arr.slice(begin[,end])

is non destructive, splice and shift will modify your original array

share|improve this answer

Maybe something like this:

arr=arr.slice(1);
share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.