When dealing with huge arrays, and you want to filter elements out of the array, in terms of performance, is it better to create a new array and just push the ones you want to keep in that new array, or manually remove elements from the existing array using something like this Deleting array elements in JavaScript - delete vs splice
Does anyone know?
Thanks