(function(){
var a;
function inner1(arg){
a = arg;
}
function inner2(){
alert(a);
}
})();
Will this cause memory leak in my application, since i am declaring variable a outside my other two inner functions.
Will this cause memory leak in my application, since i am declaring variable a outside my other two inner functions. |
|||||||
|
|
No, because you are declaring that variable inside an anonymous function closure already. You can prove this by doing the following.
|
|||
|
|