I'm really confused about this.

My understanding was that array.splice(startIndex, deleteLength, insertThing) would insert insertThing into the result of splice() at startIndex and delete deleteLength's worth of entries? ... so:

var a = [1,2,3,4,5];
var b = a.splice(1, 0, 'foo');
console.log(b);

Should give me:

[1,'foo',2,3,4,5]

And

console.log([1,2,3,4,5].splice(2, 0, 'foo'));

should give me

[1,2,'foo',3,4,5]

etc.

But for some reason it's giving me just an empty array? Take a look: http://jsfiddle.net/trolleymusic/STmbp/3/

Thanks :)

link|improve this question

75% accept rate
As a couple of people have now pointed out - the function returns the removed elements, but modifies the array. Thanks :) ! – Trolleymusic Sep 22 '11 at 16:16
And three excellent answers - sorry, I just marked the first one that came in as the correct one. Thanks all for your help! – Trolleymusic Sep 22 '11 at 16:26
feedback

3 Answers

up vote 1 down vote accepted

The "splice()" function returns not the affected array, but the array of removed elements. If you remove nothing, the result array is empty.

link|improve this answer
Ah! Idiot! Thanks! – Trolleymusic Sep 22 '11 at 16:13
feedback

The array.splice function splices an array returns the elements that were removed. Since you are not removing anything and just using it to insert an element, it will return the empty array.

I think this is what you are wanting.

var a = [1,2,3,4,5]; 
a.splice(1, 0, 'foo'); 
var b = a;
console.log(b); 
link|improve this answer
feedback

splice() modifies the source array and returns an array of the removed items. Since you didn't ask to remove any items, you get an empty array back. It modifies the original array to insert your new items. Did you look in a to see what it was? Look for your result in a.

var a = [1,2,3,4,5];
var b = a.splice(1, 0, 'foo');
console.log(a);   // [1,'foo',2,3,4,5]
console.log(b);   // []

In a derivation of your jsFiddle, see the result in a here: http://jsfiddle.net/jfriend00/9cHre/.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

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