严格模式有助于编写“安全”的 JavaScript 代码。这意味着糟糕的语法实践会转化为真正的错误。
例如,严格模式阻止创建全局变量。
要声明严格模式,请添加“use strict”;在要在严格模式下的语句之前的语句:
'use strict';
const sentence = "Hello, this is very strict";
严格模式有助于编写“安全”的 JavaScript 代码。这意味着糟糕的语法实践会转化为真正的错误。
例如,严格模式阻止创建全局变量。
要声明严格模式,请添加“use strict”;在要在严格模式下的语句之前的语句:
'use strict';
const sentence = "Hello, this is very strict";