I am using General Interface in my web application and I have javascript classes and methods to create objects for my classes. I would like to clear the memory when the objects are not used. My question is how can I clear the object s memory.
I have tried with obj = null; and delete obj; . Both are not working as expected.
Is there way to clear the object and object memory in JavaScript or in General Interface.
-Sridhar