topic description
var a=1;
(function a(){
console.log(1,a);
a=2;
console.log(2,a);
delete a;
console.log(3,a);
})();
console.log(4,a);
what exactly is the meaning of asking axi2? And why the output is the code of the a function itself?