Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

I have the following json array

var countries = {};

countries.results = [
    {id:'AF',name:'Afghanistan'},
    {id:'AL',name:'Albania'},
    {id:'DZ',name:'Algeria'}
];

How can I remove an item from this array using its name or value ?

Thank you

share|improve this question

4 Answers

up vote 9 down vote accepted

Created a handy function for this..

function findAndRemove(array, property, value) {
   $.each(array, function(index, result) {
      if(result[property] == value) {
          //Remove from array
          array.splice(index, 1);
      }    
   });
}

//Checks countries.result for an object with a property of 'id' whose value is 'AF'
//Then removes it ;p
findAndRemove(countries.results, 'id', 'AF');
share|improve this answer
5  
Note: jQuery is necessary to use this function – Headshota Jun 10 '11 at 18:53
nice one! Thanks! – G Siry Jun 10 '11 at 18:55
3  
Does this not break the index, because the index changes during execution if an element is removed. – Alex Mar 15 '12 at 14:55
Array.prototype.removeValue = function(name, value){
   var array = $.map(this, function(v,i){
      return v[name] === value ? null : v;
   });
   this.length = 0; //clear original array
   this.push.apply(this, array); //push all elements except the one we want to delete
}

countries.results.removeValue('name', 'Albania');
share|improve this answer
2  
+1: This isn't the highest voted answer, but it worked best for me. I was parsing a JSON array that I was getting back from a jquery AJAX success handler, and the $.each method was unexpectedly tripping over 'undefined' values. I'm still not sure why I was getting back 'undefined' values to begin with; but in any event, this code snippet definitely worked best for me. Thanks! – Jim G. May 30 '12 at 21:33
@JimG.: Glad I could be of help :-) – Rocket Hazmat May 30 '12 at 21:55
@JimG The undefined values you get are because the indexes changed after the array elements have been spliced out, so the accepted answer doesn't actually work. Can you change it to this one] – theringostarrs Oct 23 '12 at 22:11
@GX.: Can you please change the accepted answer to this answer? – Jim G. Oct 23 '12 at 22:36

Try this:

var COUNTRY_ID = 'AL';

countries.results = 
  countries.results.filter(function(el){ return el.id != COUNTRY_ID; });
share|improve this answer
3  
+1: Worth noting that it isn't supported in IE < 9 – Jeremy Heiler Jun 10 '11 at 18:53
+1 Learn something new every day – John Strickler Jun 10 '11 at 18:54
@Jeremy Heiler: for IE such function can be added from code provided here: developer.mozilla.org/en/JavaScript/Reference/Global_Objects/… – c-smile Jun 10 '11 at 18:56
4  
You referenced the same link I referenced :-P – Jeremy Heiler Jun 10 '11 at 18:57

you can use delete operator to delete property by it's name

delete objectExpression.property

or iterate through the object and find the value you need and delete it:

for(prop in Obj){
   if(Obj.hasOwnProperty(prop)){
      if(Obj[prop] === 'myValue'){
        delete Obj[prop];
      }
   }
}
share|improve this answer
2  
I think he wants to delete the entire object from the array. Instead of deleting the property from the object. – John Strickler Jun 10 '11 at 18:50

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.