use-strict 发表于 2019-07-11 | 更新于 2019-07-17 | 评论数: 严格模式 ES5 严格模式都做了哪些事? 全局变量严格模式下禁止自动创建全局变量 来看下面的例子12a = 3;window.a // 3 123'use strict'a = 3;// ReferenceError a is not definedwindow.a //