Tagged Questions
5
votes
3answers
842 views
JavaScript: Can ECMAScript 5's Strict Mode (“use strict”) be enabled using single quotes ('use strict')?
JavaScript doesn't care if your Strings are double-quoted "double" or single-quoted 'single'.
Every example of ECMAScript 5's strict mode has it enabled by "use strict" in double-quotes. Can I do the ...
11
votes
2answers
2k views
In ECMAScript5, what's the scope of “use strict”?
What scope does the strict mode pragma have in ECMAScript5?
"use strict";
I'd like to do this (mainly because JSLint doesn't complain about it):
"use strict";
(function () {
// my stuff here...
...
32
votes
4answers
5k views
Which (javascript) environments support ECMAscript 5 strict mode? (aka “use strict”)
ECMAScript 5 is in its final draft as I write this; It is due to include a strict mode which will prevent you from assigning to the global object, using eval, and other restrictions. (John Resig's ...