strict模式(ES6)

Posted fanyizhan

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了strict模式(ES6)相关的知识,希望对你有一定的参考价值。

1、强制申明变量
在strict模式下运行的javascript代码,强制通过var申明变量,未使用var申明变量就使用的,将导致运行错误。
启用strict模式的方法是在JavaScript代码的第一行写上:‘use strict‘;

2、多行字符串
反引号 ` ... ` 表示,替换 --换行

3、模板字符串
${varName},替换+--连接字符串

1 ‘use strict‘;
2 var name = ‘小明‘;
3 var age = 20;
4 var message = `你好, ${name}, 你今年${age}岁了!`;
5 alert(message);

注意:使用模板字符串在反引号里面

4、

以上是关于strict模式(ES6)的主要内容,如果未能解决你的问题,请参考以下文章

ES5和ES6的区别

在 Node.js 中使用某些 es6 方法时是不是需要使用 strict [重复]

(11) 严格模式(use strict)

Javascript 严格模式(strict mode)详解

Javascript 严格模式use strict详解

Javascript 严格模式use strict详解