Recently, I came across one of my application which consumes too much memory and increasing by 10 MB/sec.
So, I like to know the best way to destroy JavaScript objec
Structure your code so that all your temporary objects are located inside closures instead of global namespace / global object properties and go out of scope when you've done with them. GC will take care of the rest.