Deleting array elements in JavaScript - delete vs splice Deleting array elements in JavaScript - delete vs splice arrays arrays

Deleting array elements in JavaScript - delete vs splice


delete will delete the object property, but will not reindex the array or update its length. This makes it appears as if it is undefined:

> myArray = ['a', 'b', 'c', 'd']  ["a", "b", "c", "d"]> delete myArray[0]  true> myArray[0]  undefined

Note that it is not in fact set to the value undefined, rather the property is removed from the array, making it appear undefined. The Chrome dev tools make this distinction clear by printing empty when logging the array.

> myArray[0]  undefined> myArray  [empty, "b", "c", "d"]

myArray.splice(start, deleteCount) actually removes the element, reindexes the array, and changes its length.

> myArray = ['a', 'b', 'c', 'd']  ["a", "b", "c", "d"]> myArray.splice(0, 2)  ["a", "b"]> myArray  ["c", "d"]


Array.remove() Method

John Resig, creator of jQuery created a very handy Array.remove method that I always use it in my projects.

// Array Remove - By John Resig (MIT Licensed)Array.prototype.remove = function(from, to) {  var rest = this.slice((to || from) + 1 || this.length);  this.length = from < 0 ? this.length + from : from;  return this.push.apply(this, rest);};

and here's some examples of how it could be used:

// Remove the second item from the arrayarray.remove(1);// Remove the second-to-last item from the arrayarray.remove(-2);// Remove the second and third items from the arrayarray.remove(1,2);// Remove the last and second-to-last items from the arrayarray.remove(-2,-1);

John's website


Because delete only removes the object from the element in the array, the length of the array won't change. Splice removes the object and shortens the array.

The following code will display "a", "b", "undefined", "d"

myArray = ['a', 'b', 'c', 'd']; delete myArray[2];for (var count = 0; count < myArray.length; count++) {    alert(myArray[count]);}

Whereas this will display "a", "b", "d"

myArray = ['a', 'b', 'c', 'd']; myArray.splice(2,1);for (var count = 0; count < myArray.length; count++) {    alert(myArray[count]);}