This question already has answers here:
What does “use strict” do in JavaScript, and what is the reasoning behind it?

(28个答案)


6年前关闭。




为什么我们仍然必须使用带引号的字符串文字来打开JS中的strict?当然,这里可以使用一些更强“类型化”的东西,例如调用内置函数,例如Object.UseStrict()或类似的东西。不得不使用字符串文字的背后原因是什么?

最佳答案

跨所有浏览器和JS运行时引擎的兼容性。

例如http://ejohn.org/blog/ecmascript-5-strict-mode-json-and-more/

关于javascript - 为什么 “use strict”仍然是字符串文字? [复制],我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/27448784/

10-11 11:50