(function(){
var a=b=6;
console.log(typeof a);
console.log(typeof b);
})();
输出为:
number
undefined
第三行为undefined?
如果第三行为undefined第四行为什么是number?
守着星空守着你
相关分类