Removes elements at specified index/indices.
Target array
Index or indices to remove
Filtered array
removeIndex([1,2,3,4], 1); // [1,3,4]removeIndex([1,2,3,4], [0,3]); // [2,3] Copy
removeIndex([1,2,3,4], 1); // [1,3,4]removeIndex([1,2,3,4], [0,3]); // [2,3]
1.2.0
Removes elements at specified index/indices.