How variables are allocated memory in Javascript?

Posted by subbu on Stack Overflow See other posts from Stack Overflow or by subbu
Published on 2010-05-10T05:16:50Z Indexed on 2010/05/10 5:18 UTC
Read the original article Hit count: 262

I would like to know how local variables are allocated memory in javascript. In C and C++ local variables are stored on stack. Is it the same in javascript? or everything is stored in heap?

© Stack Overflow or respective owner

Related posts about JavaScript

Related posts about memory-management