B016-变量提升类
function foo() {
let a = b = 0;
a++;
console.log
return a;
}
foo();
typeof a; // => ???
typeof b; // => ???
输出 undefined number
function foo() {
let a = b = 0;
a++;
console.log
return a;
}
foo();
typeof a; // => ???
typeof b; // => ???
输出 undefined number