Skip to content Skip to sidebar Skip to footer
Showing posts with the label Memory Management

Heap And Native Memory Allocation In Javascript: How Managed?

JavaScript has Heap (garbage collected) memory, and Native (Typed Arrays, DOM elements) memory. Que… Read more Heap And Native Memory Allocation In Javascript: How Managed?

How Is The Memory Allocation Done For Variables In Scripting Languages?

For example, in javascript I can say var x = 5; Later I can do x = 'a'; and then x = … Read more How Is The Memory Allocation Done For Variables In Scripting Languages?

Javascript Nested Function Performance

I have some nested functions such as var freak = function() { var die = function() { ... } … Read more Javascript Nested Function Performance

Iframes And Memory Management In Javascript

I have links that load pages into iframes. I have been monitoring the accumulation of data in memor… Read more Iframes And Memory Management In Javascript