SyntaxError:在严格模式下使用const
我正在使用node.js,并在我正在使用的一个js文件const中"strict mode"。当试图运行它时,我收到一个错误:
const
"strict mode"
SyntaxError: Use of const in strict mode.
这样做的最佳做法是什么?
编辑:
'use strict'const MAX_IMAGE_SIZE = 1024*1024; // 1 MB
守着一只汪
相关分类