aspose file tools
The moose likes HTML, CSS and JavaScript and the fly likes When is the memory occupied by elements in javascript released Big Moose Saloon
  Search | Java FAQ | Recent Topics
Register / Login


Win a copy of The Mikado Method this week in the Agile and other Processes forum!
JavaRanch » Java Forums » Engineering » HTML, CSS and JavaScript
Reply Bookmark "When is the memory occupied by elements in javascript released" Watch "When is the memory occupied by elements in javascript released" New topic
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
    
  13

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]
 
I agree. Here's the link: http://ej-technologies/jprofiler - if it wasn't for jprofiler, we would need to run our stuff on 16 servers instead of 3.
 
subject: When is the memory occupied by elements in javascript released
 
Similar Threads
Memory problem with objects of JDBC
Memory leaks
gc() of method area
div elements in safari
OutOfMemory