是否有使用"use strong";
并将"use strict";
用作备份?由于Google Chrome浏览器似乎是目前支持"use strong";
的唯一浏览器。
答案 0 :(得分:1)
您总是可以将代码包装在一个立即调用的函数表达式中,使用" use strict"在它之外和#34;使用强大的"在内部(因此,如果浏览器支持它,它会优先):
"use strict"
(function(){
"use strong";
//your code here
})();