Just out of curiosity, if I was to set a variable in JavaScript like this:
var name = "Mango";
Then never reference it would JavaScript "automatically" release the variable from memory if it found that it had never been used, or would this have been ignored all together and nothing would have happened?
Thank you in advance.