var results = ['one', 'two', 'one hundred', 'three'];
var removal = [];
$.each(results, function(i) {
removal.push(i);
if (results[i].indexOf('one') == -1){
console.log('Removing:' + results[i] + '(' + removal[i] + ')');
results = results.splice(removal[i], 1);
}
});
I have the following code, but it is breaking after it removes the first result.
I want it to remove anything that does not contain the word 'one'.
I am guessing it is breaking because the removal order changes once one has been removed.
What am I doing wrong?

$.each()loop as per the answers below, still you are pushing the array indexes into theremovalarray so when the loop endsremovalis[0,1,2,3]. Did you intend to push the values intoremoval? Also you push them in before the if test soremovalisn't actually tracking what got removed. Within yourifyou are usingias an index into bothremovalandresultseven though these arrays are different lengths because you are adding elements toremovaland removing elements fromresults. – nnnnnn Feb 2 '12 at 1:21