标签:提升 变量 imp 必须 es6 class const 浏览器 func
var
存在变量提升
function
存在变量提升,在es6的浏览器中,最好别再块级作用域中用函数声明,用表达式
let
暂时性死区,无变量提升,不再是顶层对象的属性,全局对象与顶层对象脱钩
const
暂时性死区,无变量提升,定义常量,一旦声明,必须马上赋值,不再是顶层对象的属性,全局对象与顶层对象脱钩
import
class
标签:提升 变量 imp 必须 es6 class const 浏览器 func
原文地址:https://www.cnblogs.com/zzf-2018/p/8963768.html