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
You can't delete objects, they are removed when there are no more references to them. You can delete references with delete.
delete
However, if you have created circular references in your objects you may have to de-couple some things.