Javascript笔记

(function(){
    var a=b=1;
})();

a;//undefined
b;//1

  

原文地址:https://www.cnblogs.com/flytome/p/5498893.html