function fn(args){
var a= 'something';
doSomething('dummy',function(){
});
}
fn();
In this code, is anonymous callback become closure or just exit after execution? If it become become a closure, how can i get back memory because it always has access to fn
's activation object.