摘要:
(function test() {
var a = b = 5;
alert(typeof a);
alert(typeof b);
})();
alert(typeof a);
alert(typeof b); 阅读全文
posted @ 2020-08-21 09:03
Cupid05
阅读(88)
评论(0)
推荐(0)
摘要:
(function test() { var a = b = 5; alert(typeof a); //number alert(typeof b); //number })(); alert(typeof a);//undefi... 阅读全文
posted @ 2020-08-21 09:03
Cupid05
阅读(25)
评论(0)
推荐(0)