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

My situation:

tag_story.push(id_tag);
/* So the tag story is somenthing like [1,3,56,6,8,90]. */

Now I would like to be able to delete an element of this array by id_tag.

For example, I would like to delete 90 (id_tag = 90) from the array. How can I do that?

share|improve this question

8 Answers

up vote 59 down vote accepted

You'll want to use JavaScript's Array splice method:

var tag_story = [1,3,56,6,8,90],
    id_tag = 90,
    position = tag_story.indexOf(id_tag);

if ( ~position ) tag_story.splice(position, 1);

Note: IE < 9 does not support .indexOf() on arrays. If you want to make sure your code works in IE, you should use jQuery's $.inArray():

var tag_story = [1,3,56,6,8,90],
    id_tag = 90,
    position = $.inArray(id_tag, tag_story);

if ( ~position ) tag_story.splice(position, 1);

If you want to support IE < 9 but don't already have jQuery on the page, there's no need to use it just for $.inArray. You can use this polyfill instead.

share|improve this answer
3  
+1 for the safety net. – alex Aug 22 '11 at 3:36
I wouldn't inlcude jQuery just for that. A simple indexOf function is available in the MDN docs – RobG Aug 22 '11 at 3:57
exactly what i needed. really thx Joseph ;) – badbetonbreakbutbedbackbone Aug 22 '11 at 13:29
@RobG: Absolutely right. I just assumed that since he tagged his question with jquery, he already has jQuery on the page – Joseph Silber Aug 22 '11 at 14:19
tag_story.splice(tag_story.indexOf(id_tag), 1);
share|improve this answer
1  
Look at the question more carefully, it looks like he wants to remove a value from an array, not an index. – Peter Olson Aug 22 '11 at 3:31
1  
@Peter Removing an index removes the associated value. – alex Aug 22 '11 at 3:32
1  
@Ispuk then you should accept Eli's answer. – Matt Ball Aug 22 '11 at 3:35
2  
This code is dangerous! If the value of id_tag is not found, it'll delete the last item in the array!! You'll have to first check if id_tag was found. See my answer. – Joseph Silber Aug 22 '11 at 3:35
2  
@Ispuk: This is a very bad habit. You should never use code simply because "it does what I need". You should carefully consider the consequences of every single line of code!!! – Joseph Silber Aug 22 '11 at 3:41
show 8 more comments

If you're going to be using this often (and on multiple arrays), extend the Array object to create an unset function.

Array.prototype.unset = function(value) {
    if(this.indexOf(value) != -1) { // Make sure the value exists
        this.splice(this.indexOf(value), 1);
    }   
}

tag_story.unset(56)
share|improve this answer

You'll want to use .indexOf() and .splice(). Something like:

tag_story.splice(tag_story.indexOf(90),1);
share|improve this answer
function removeValue(arr, value) {
    for(var i = 0; i < arr.length; i++) {
        if(arr[1] === value) {
            return arr.splice(i, 1);
        }
    }
}

This can be called like so:

tag_story = removeValue(tag_story, 90);
share|improve this answer
this doesn't works as i espected ... the Eli code was exactly what i needed but it doesn't works on IE, check that and check your code , they do not same work :( ... – badbetonbreakbutbedbackbone Aug 22 '11 at 13:26
@lspuk Fixed it. – Peter Olson Aug 22 '11 at 14:23

Splice. Look up the documentation for Array.

share|improve this answer

Here are some helper functions I use:

Array.prototype.contains = function (key) {
    var i = this.length;
    while (i--) if (this[i] === key) return true;
    return false;
}

Array.prototype.add = function (key, value) {
    if(!this.contains(key)) this.push(key);
    this[key] = value;
}

Array.prototype.remove = function (key) {
    var i = this.length;
    while (i--) if (this[i] == key) return this.splice(i, 1);
}
share|improve this answer

As a variant

delete array[array.indexOf(item)];

If you know nothing about delete operator, don't use this.

share|improve this answer
Not a good solution, if you use delete keyword, you will have an undefined element in the array finally. – Afshin Mehrabani Apr 5 at 7:40

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.