Subj : Re: Newbie question. GC or memory managment. To : J.P. From : Brendan Eich Date : Wed Aug 25 2004 03:58 pm J.P. wrote: > Given a context, I constructed some objects, string by using > JS_NewStringCopyN(), JS_NewObject() and by evaluating script, such as > "$$ = new Object()". > > I assume that all these storage will be deallocated automatically after > I destroy the context. Is it right? No. Do you know how Garbage Collection works? It doesn't depend on manual intervention to release storage. /be .