小題一練習

(function(){ var a=b=100; })(); console.log(typeof a); console.log(typeof b); console.log(a); console.log(b); 原因:是因爲在定義var a=b=100;時定義的是a的=b而b沒有定義變量b=100則是全局變量因此a未定義b爲全局變量爲100所以爲數字型且值爲100.
相關文章
相關標籤/搜索