JavaScript doesn't care if your Strings are double-quoted "double" or single-quoted 'single'.
"double"
'single'
Every example of ECMAScript 5's strict mode has it enabled by "use strict" in double-quotes. Can I do the following (single-quotes):
"use strict"
alert(function(){ 'use strict'; return !this; }());
This will return true if Strict mode is enabled, and false if it is not.
For you, without using a browser that supports strict mode:
A Use Strict Directive is an ExpressionStatement in a Directive Prologue whose StringLiteral is either the exact character sequences "use strict" or 'use strict'. A Use Strict Directive may not contain an EscapeSequence or LineContinuation.
ExpressionStatement
StringLiteral
'use strict'
2.1m questions
2.1m answers
60 comments
57.0k users