how does garbage collection works in javascript? is it similar to .net garbage collector and is it because the vbscript GC is bad that people avoided it and considered javascript as their standard client side api?
The short answer is: When a block of memory (an object, say) is no longer reachable, it is eligible to be reclaimed. When, how, or whether it is reclaimed is entirely up to the implementation, and different implementations do it differently. But at a language level, it's automatic. For example:
When Contrast with:
...now a reference to the object survives the call, and persists until/unless the caller assigns something else to Also contrast with:
Here, the object is not available for garbage collection immediately when (This business of a function having a reference to the "execution context" in which it was created is why some JavaScript functions are sometimes called "closures" — a term from mathematics, but basically it means they "close over" data. More about closures in this article. And yes, the anonymous function above does keep the object around while the function exists, even though it doesn't explicitly reference JavaScript has no problem handling cleaning up circular references, btw, so for instance:
When Re:
JavaScript was the original client-side web scripting language. VBScript only came later, when Microsoft came out with a browser, and was only ever supported in Microsoft browsers. JavaScript was and is the only client-side scripting game in town if you want to work with the broadest range of browsers. <subjective>It's also about eight times the language classic VBScript ever was. ;-) </subjective> |
|||||||||||||
|
|
Garbage collection, in principle, uses similar methods in all languages. Their implementation will however be different in different environments (e.g. each browser uses a different way of implementing JavaScript GC). For a very brief overview of Chrome's GC, see e.g. this. As for VBScript, it was created as a JavaScript rival/replacement language that only runs in IE. This was a fairly reasonable decision at the time VBS was introduced - IE had 90+% of the browser share and it looked that VBS can replace the (widely supported, older and feature-poor at the time) JavaScript; not so much nowadays. Also, VBScript is basically Visual Basic Lite, with all the negative connotations to go with that brand. |
||||
|
|