Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

In internet explorer we can force the Javascript garbage collection to execute with this method: CollectGarbage();

That method is undefined on Firefox. Do you know if there is some kind of equivalent?

Thanks.

share|improve this question
1  
What problem are you really trying to solve? Garbage collection happens on it's own automatically as soon as your JS thread finishes its current thread of execution. Why do you think you need to run garbage collection explicitly? – jfriend00 Apr 19 '12 at 11:52
Ditto to what jfriend00 said, and you've tagged this as [memory-leaks], are you trying to find memory leaks? What is the actual problem you need to resolve? – avasopht Apr 19 '12 at 11:58
1  
hi, my problem is that I have an HTML5 games that generates a lot of garbage, and I'd like to call the GC in controlled situations (like pause menu) – xus Apr 19 '12 at 12:03

1 Answer

up vote 1 down vote accepted

you can use _system.gc() for force full garbage collection in javascript

share|improve this answer
thanks, is this supported officially by javascript standards? – xus Jan 15 at 8:20

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.