What is the fastest way to iteratively splice multiple arrays as you go along - without too much performance hit? I imagine it being something like the syntax below but it doesn't quite work.
I'd like to do: Array1 - remove[0], Array2 - remove[1], Array3 - remove[2]... and so on...
for (var i = 0; i < items.length; i++) {
arr[i] = items.name;
for(key in arr[i]) {
var value = arr[i].splice(i, 1);
console.log(value);
}
}

EDIT (definition of items):

Desired Result (3 arrays with 1st, 2nd, 3rd items removed, respectively:
[array0]
[0] United Kingdom
[1] United States
[array1]
[0] Canada
[1] United States
[array2]
[0] Canada
[1] United Kingdom
EDIT2 - if you look at the following comparison, you can see if we use a for loop to push the incoming arrays into group, the result is identical to the solution provided by Corey, but if we run the splice methods on both of those - the results are very different, example 2 is getting spliced correctly - example 1 is getting spliced entirely, that is where I am confused :
(items are coming in the form of:)
["Canada", "United Kingdom", "United States"]
["Canada", "United Kingdom", "United States"]
["Canada", "United Kingdom", "United States"]
var group = [];
for (var i = 0; i < items.length; i++) {
group.push(items.name);
}
/*for (var i = 0; i < group.length; i++) {
group[i].splice(i, 1);
}*/
console.log(group);
var arr1 = ["One", "Two", "Three"];
var arr2 = ["One", "Two", "Three"];
var arr3 = ["One", "Two", "Three"];
var test = [arr1, arr2, arr3];
/*for (var i = 0; i < test.length; i++) {
test[i].splice(i, 1);
}*/
console.log(test);
items. – James Montagne Mar 6 at 20:27for inloop on indexed arrays. Thefor inloop should only be used for iterating objects of key-value pairs that are not indexed. – sweetamylase Mar 6 at 20:30