标签:优先级 alert undefined class 区别 fine rip java logs
写 js 函数可以有两种方法,function aa(){}和 var aa = function() {}
这两种的区别在于第一种的执行优先级高于第二种,以两个例子说明
aa(); function aa() { alert(123); } // 成功执行
console.log(bb); var bb = function() { return 23; } // undefined
标签:优先级 alert undefined class 区别 fine rip java logs
原文地址:http://www.cnblogs.com/bbb324/p/6812369.html