Heap - muhamed-hassan/javascript-dev-foundation GitHub Wiki
Example:
Allocate an object in the heap:
var objectName = new Object();
Deallocate an allocated object from the heap:
objectName = null; // later the GC will reclaim the unreferred allocated objects