I wanted to splice my array, so I created this snippet of code:
System.log(finalcluster.length);
for (i=0; i <= finalcluster.length; i++){
if (finalcluster[i] != undefined ){
System.log(finalcluster[i][0]);
var remove = finalcluster.indexOf("dump");
if (finalcluster[i][0] == "dump")
{
System.log("couse dump");
finalcluster.splice(remove,1);
}
else {
System.log("No Problem");
}
}
}
In this code are two remove functions, I know because I tried indexof an integer i.
When I executed this code, only two dumps are removed, I think the two before but after my right result, there are another "dump" arrays. Why split can't move it because it can splice the array from before the key word.
Array:
[Name][Number]
[dump][0]
[dump][0]
[KEYWORD][KEYNUMBER]
[dump][0]
[dump][0]
that's the array model.
You either need to increment i if you don't splice or splice and decrement i. As of right now you are splicing and incrementing which is skipping your back-to-back dumps.
To try to explain it better you are saying dump is at index 1 and 2. If you splice at 1, what was at index 2 is now at index 1 but you are making i look at index 2....
The code above will increment i if you do not splice. otherwise it keeps i at its current index to avoid skipping indexes.