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.

link|improve this question

68% accept rate
feedback

5 Answers

up vote 42 down vote accepted

Very simple:

A = [];
link|improve this answer
Hi, I have a few arrays and everytime I run it, it adds a few items to it, I initialize at the start of the code but it still keeps its value and add more values to it, do I need to clear the array after the code is run too? – amir Aug 5 '09 at 9:12
1  
use var inside your functions. google that. – Makram Saleh Aug 5 '09 at 9:15
69  
this will NOT empty the array, but create a new, empty array. This might cause problems, especially if there are other references to the array. OP: Please consider to accept Matthew's answer instead. It is the cleaner and formally correct approach. – Daniel Baulig Jan 19 '11 at 13:08
6  
To all commenters and downvoters: you are all right, and the answer below (setting the length to 0) is a better answer, but in many cases the solution I presented works perfectly and is more succinct – Philippe Leybaert Oct 14 '11 at 19:12
2  
34 upvotes and 17 downvotes. Doesn't that deserve a special badge? :-) – Philippe Leybaert Jan 17 at 15:50
show 3 more comments
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:

A.length = 0;
link|improve this answer
Should this work with all browsers? – Acorn May 10 '11 at 21:22
@Acorn Yes, it will work in all browsers. – Matthew Crumley May 10 '11 at 22:01
2  
what does ECMAScript 5 Standard says about this? – Pacerier Jun 21 '11 at 7:00
19  
@Pacerier: It still works in ES5. From section 15.4: "...whenever the length property is changed, every property whose name is an array index whose value is not smaller than the new length is automatically deleted" – Matthew Crumley Jun 21 '11 at 7:43
1  
@SteveSiebert It shouldn't in a correctly-implemented interpreter, and I don't know of any implementations that do. OF course, it's possible but it's not any more likely than other incorrect sources of leaks. – Matthew Crumley Feb 8 at 20:28
show 4 more comments
feedback

A more cross-browser friendly and more optimal solution will be to use the splice method to empty the content of the array A as below:

A.splice(0, A.length);

link|improve this answer
4  
Why is this more cross-browser friendly? What browsers have issues with A.length? – stricjux Nov 21 '11 at 15:12
6  
This returns a new array. – alex Dec 1 '11 at 23:36
Like @alex said, splice returns a new array. Not something you would want to do in a REPL. You could always void the expression but that's not an elegant solution. – Aadit M Shah Mar 15 at 14:32
This is the most correct answer since this actually "clears the array content and retains the reference to the original array object. – Shamasis Bhattacharya 2 days ago
feedback

just reinitialize the array

  var A = new Array();
link|improve this answer
and do some sort of re-initialization that would still keep the references you wanted – Mahan May 17 at 2:41
feedback

Won't

A = null;

work? This would not only empty the array, but also let the garbage collector recover memory.

link|improve this answer
3  
No. JavaScript can't call the garbage collector. That happens automatically as and when the engine deems necessary. However in Rhino and Spidermonkey you can explicitly call the global gc() function to run the garbage collector. Also setting a variable to null doesn't mean that the variable is garbage collected or all references to the array are removed. The null value is only a placeholder for nothing. To clarify, variables aren't garbage collected. Values are. Setting A to null only means that A holds nothing. It still takes up memory for that purpose though. Hope that helps. – Aadit M Shah Mar 15 at 14:27
Yes, I do know that JS can't call the GC itself and that the JS engine does it when it deems appropriate. What I was trying to say was that assigning null to A would make it a candidate for freeing up memory when the GC does run. See docstore.mik.ua/orelly/webprog/jscript/ch11_03.htm and also ifadey.com/2011/05/javascript-mistakes-you-must-avoid (and possibly elsewhere too) I do understand this is not what the OP asked for (he only wanted to empty the array), but with all due respect, I think my reply isn't 'wrong' per se. – JamieJag Apr 19 at 16:40
You're correct. Your answer is not invalid in the sense that the variable A no longer references the array. However it's critical to understand that setting the value of A to null doesn't mean that it becomes a candidate for garbage collection. There still may be other references to the array and hence you can't be absolutely certain that the space occupied by the array will be freed at any time in the perceivable future. At best this is just a good programming practice if you're using global variables (which you shouldn't be doing). The gc usually runs when a variable goes out of scope. – Aadit M Shah Apr 20 at 12:51
Considering that the OP did not give any code context, I suppose it's okay to assume that that bit of code he's referring to occurs in an array. To argue the point, you don't know that it's a global variable either, so it may actually be garbage-collected after this line. Anyway... – JamieJag Apr 20 at 22:27
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.