Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

Is there a method to be able to remove an item from an JavaScript array like from this array:

var ary = ['three', 'seven', 'eleven'];

And I do an function like whereas:

removeItem('seven', ary);

I've looked into splice() but that only removes by the position number, where I need something to remove an item by its value.

share|improve this question
15  
Um, what? I guess you're the one that downvoted my question. I have nothing to do with jQuery for this. All this is plain JavaScript, hence my tags suggested JavaScript. – Burning the Codeigniter Oct 20 '10 at 13:42

7 Answers

up vote 81 down vote accepted

This can be a global function or a method of a custom object, if you aren't allowed to add to native prototypes. It removes all of the items from the array that match any of the arguments.

Array.prototype.remove = function() {
    var what, a = arguments, L = a.length, ax;
    while (L && this.length) {
        what = a[--L];
        while ((ax = this.indexOf(what)) !== -1) {
            this.splice(ax, 1);
        }
    }
    return this;
};

var ary = ['three', 'seven', 'eleven'];

ary.remove('seven');

/*  returned value: (Array)
three,eleven
*/

To make it a global-

function removeA(arr) {
    var what, a = arguments, L = a.length, ax;
    while (L > 1 && arr.length) {
        what = a[--L];
        while ((ax= arr.indexOf(what)) !== -1) {
            arr.splice(ax, 1);
        }
    }
    return arr;
}
var ary = ['three', 'seven', 'eleven'];
removeA(ary, 'seven');


/*  returned value: (Array)
three,eleven
*/

And to take care of IE8 and below-

if(!Array.prototype.indexOf) {
    Array.prototype.indexOf = function(what, i) {
        i = i || 0;
        var L = this.length;
        while (i < L) {
            if(this[i] === what) return i;
            ++i;
        }
        return -1;
    };
}
share|improve this answer
Just wondering, would I need to include the prototypeJS lib into my project to use your suggestion or is this cross-browser included? – xorinzor Jul 22 '12 at 13:47
1  
@xorinzor No, the .prototype property is cross-browser. – rodarmor Oct 5 '12 at 5:08
   
I like SLaks suggestion better which uses indexOf. – Jonathan Tonge Mar 15 at 16:09
Never change Array prototype. Funny things starts to happen. – madeinstefano May 7 at 12:46

You're looking for the indexOf method
For example:

var index = array.indexOf(item);
array.splice(index, 1);

Note that you'll need to add it for IE.

share|improve this answer
15  
And loop on it while the index isn't -1 – Colin Hebert Oct 17 '10 at 17:50
2  
It would be best to do a check to only splice if different than -1, there are like millions of options, choose wisely jsperf.com/not-vs-gt-vs-ge/4 – ajax333221 May 29 '12 at 21:19
+1 for the link for adding it to IE. That's exactly what I was looking for. – Paul Tomblin Nov 22 '12 at 16:04

Check out this way:

for(var i in ary){
    if(ary[i]=='seven'){
        ary.splice(i,1);
        break;
        }
}

and in a function:

function removeItem(array, item){
    for(var i in array){
        if(array[i]==item){
            array.splice(i,1);
            break;
            }
    }
}

removeItem(ary, 'seven');
share|improve this answer
Very clean! Is this fully IE-compliant? – amindfv Jun 23 '12 at 3:21
3  
Keep in mind if you modify this code to not "break" and continue looping to remove multiple items, you'll need to recalculate the i variable right after the splice, like so: i--. That's because you just shrunk the array and you'll end up skipping an element otherwise. – Doug S Oct 27 '12 at 5:44
1  
To add to my above comment, the code would then be: for (var i = 0; i < array.length; i++) {/*etc...*/ array.splice(i,1); i--; – Doug S Oct 27 '12 at 5:49
var index = array.indexOf('item');

if(index!=-1){

   array.splice(index, 1);
}
share|improve this answer

indexOf is an option, but it's implementation is basically searching the entire array for the value, so execution time grows with array size. (so it is in every browser I guess, I only checked Firefox).

I haven't got an IE6 around to check, but I'd call it a safe bet that you can check at least a million array items per second this way on almost any client machine. If [array size]*[searches per second] may grow bigger than a million you should consider a different implementation.

Basically you can use an object to make an index for your array, like so:

var index={'three':0, 'seven':1, 'eleven':2};

Any sane JavaScript environment will create a searchable index for such objects so that you can quickly translate a key into a value, no matter how many properties the object has.

This is just the basic method, depending on your need you may combine several objects and/or arrays to make the same data quickly searchable for different properties. If you specify your exact needs I can suggest a more specific data structure.

share|improve this answer
Mind that this is NOT clugy as an associative array is actually an object: var arr = []; arr['zero'] = 1, arr['one'] = 2; is equivalent to: {zero: 1, one: 2} – Cody Sep 11 '12 at 20:11

You can use underscore.js. It really makes things simple.

In you case the code that you will have to right is -

_.without(['three','seven','eleven'], 'seven');

and the result will be ['three','eleven'].

It reduces the code that you write.

share|improve this answer
2  
I never said don't use the library in other places. If the code looks cleaner then i don't mind including a library. Why do people use jquery , why not use raw javascript then? – vatsal Mar 4 at 5:17
var remove = function(array, value) {
    var index = null;

    while ((index = array.indexOf(value)) !== -1)
        array.splice(index, 1);

    return array;
};
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.