Iterable
ES6新特性 遍历数组
// for of 打印值 , for in 打印下标
var arr [4,5,6]
for (const number of arr) {console.log(number)
}遍历Map
var map new Map([[whl,100],[ht,110],[other,0]])
for (let x of map) {console.log(x)console.log(x[0])consol…
作用域
局部函数
在javascript中,var定义变量实际是有作用域的。 假设在函数体中声明,则在函数体外不可以使用~(如果非要使用的话,可以用闭包)
function qj() {var x 1;x x 1;
}
x x 2; // Uncaught Referenc…