Do I need to manually free allocated memory, or does JavaScript have a garbage collector?
Is it acceptable to use this code snippet in JavaScript?
function fillArray()
{
var c = new Array;
c.push(3);
c.push(2);
return c;
}
var arr = fillArray();
var d = arr.pop()
Thank you for your help.