[javascript] javascript pushing element at the beginning of an array

I have an array of objects and I'd like to push an element at the beginning of the of the array.

I have this:

var TheArray = TheObjects.Array;
TheArray.push(TheNewObject);

It's adding TheNewObject at the end. Do I need to create a new array, add TheNewObject to it and then loop through TheArray and add each element the to the array?

This question is related to javascript

The answer is


Use unshift, which modifies the existing array by adding the arguments to the beginning:

TheArray.unshift(TheNewObject);

Use .unshift() to add to the beginning of an array.

TheArray.unshift(TheNewObject);

See MDN for doc on unshift() and here for doc on other array methods.

FYI, just like there's .push() and .pop() for the end of the array, there's .shift() and .unshift() for the beginning of the array.


For an uglier version of unshift use splice:

TheArray.splice(0, 0, TheNewObject);