if there is an array, is it possible to empty with .remove()
for instance if
A = [1,2,3,4];
how can I empty that.
|
if there is an array, is it possible to empty with .remove() for instance if
how can I empty that.
| ||||
|
feedback
|
|
Very simple:
| |||||||||||||||||||
feedback
|
|
If you need to keep the original array because you have other references to it that should be updated too, you can clear it without creating a new array by setting its length to zero:
| |||||||||||||||||
feedback
|
|
A more cross-browser friendly and more optimal solution will be to use the
| |||||||||||||
feedback
|
|
just reinitialize the array
| |||
feedback
|
|
Won't
work? This would not only empty the array, but also let the garbage collector recover memory. | |||||||||||
feedback
|