| Author |
When is the memory occupied by elements in javascript released
|
ravisha andar
Ranch Hand
Joined: Feb 25, 2011
Posts: 55
|
|
Hi All,
I java the garbage collector frees the memory occupied by the variables of type String etc...................
How does the memory occupied by elements get cleared in javascript other than when the browser is closed.
For example
var a = document.getElementById('div');
When is the memory occupied by variable 'a' released.
And if we do
removechild(a);
What happens to the memory occupied by 'a' ?
Please help me understand this
Thanks
|
 |
Bear Bibeault
Author and ninkuma
Marshal
Joined: Jan 10, 2002
Posts: 56219
|
|
|
JavaScript employ garbage collection just like Java. So objects are eligible for garbage collection as soon as there are no more reference to them.
|
[Smart Questions] [JSP FAQ] [Books by Bear] [Bear's FrontMan] [About Bear]
|
 |
 |
|
|
subject: When is the memory occupied by elements in javascript released
|
|
|