JavaScript: Can ECMAScript 5's Strict Mode ("use strict") be enabled using single quotes ('use strict')?
For you, without using a browser that supports strict mode:
A Use Strict Directive is an
ExpressionStatement
in a Directive Prologue whoseStringLiteral
is either the exact character sequences"use strict"
or'use strict'
. A Use Strict Directive may not contain an EscapeSequence or LineContinuation.
http://ecma262-5.com/ELS5_HTML.htm#Section_14.1
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.
According to the mozilla documentation you can use both "use strict";
and 'use strict';
.