Uncaught SyntaxError: Block-scoped declarations (let, const, function, class) not yet supported outside strict mode错误的解决办法

最近笔记本电脑坏了送修,临时找了一台台式电脑办公,结果之前写好的前端代码无法正常运行了,看了一下提示JS错误:

Uncaught SyntaxError: Block-scoped declarations (let, const, function, class) not yet supported outs

这个错误是因为当前电脑的浏览器版本不支持ES6语法,解决办法有以下两种:

1.如果不涉及到代码逻辑的话,使用var替换let即可。

2.在使用let关键字的代码块第一行加入下面代码,注意不要删除单引号。

'use strict';

未经允许不得转载:吾爱主机之家 » Uncaught SyntaxError: Block-scoped declarations (let, const, function, class) not yet supported outside strict mode错误的解决办法