It is not a duplicate! The link above doesn't show how to delete all other subarrays values by index of the third subarray (see expected array).
This code finds duplicates:
var array = [];
array[0] = [0, "1:7001", "1:7002", "1:7003", "1:7004", "1:7005"];
array[1] = [1, "1:8001", "1:8002", "1:8003", "1:8004", "1:8005"];
array[2] = ["asw", 32884789084, 32919691801, 32919691801, 32919691801, 32857764298];
var dup = array[2].filter((v, i, a) => a.indexOf(v) !== i);
console.log(dup);
But I don't know how to delete elements in subarrays. Expected array should look like:
[0, "1:7001", "1:7002", "1:7005"];
[1, "1:8001", "1:8002", "1:8005"];
["asw", 32884789084, 32919691801, 32857764298];