let 语句
- 声明一个块范围变量。
语法
let 变量名 = 初始化值;
例子
"use strict";
let name = '赵敏';
(function opt(){
let name = '张无忌';
console.log(name);
})();
console.log(name+'1a');
案例结果
张无忌
赵敏1a
总结
- let 语句创建的变量,作用域在于声明它的块中。
- let 语句声明的变量,在声明之前不能使用。
- 默认值为undefined
兼容性(IE)
· 支持
- IE11 标准文档模式
· 不支持
- IE6/7/8/9/10标准文档模式/Quirks