78

Is there anyway to check if strict mode 'use strict' is enforced , and we want to execute different code for strict mode and other code for non-strict mode. Looking for function like isStrictMode();//boolean

Bhargav Rao
  • 41,091
  • 27
  • 112
  • 129
Deepak Patil
  • 3,000
  • 3
  • 21
  • 21

7 Answers7

108

The fact that this inside a function called in the global context will not point to the global object can be used to detect strict mode:

var isStrict = (function() { return !this; })();

Demo:

> echo '"use strict"; var isStrict = (function() { return !this; })(); console.log(isStrict);' | node
true
> echo 'var isStrict = (function() { return !this; })(); console.log(isStrict);' | node
false
ThiefMaster
  • 285,213
  • 77
  • 557
  • 610
  • 3
    For clarification, the return statement is equivalent to `return this === undefined`, it's not comparing it to the global object, it's just checking if `this` exists. – aljgom Mar 15 '17 at 21:40
30

I prefer something that doesn't use exceptions and works in any context, not only global one:

var mode = (eval("var __temp = null"), (typeof __temp === "undefined")) ? 
    "strict": 
    "non-strict";

It uses the fact the in strict mode eval doesn't introduce a new variable into the outer context.

noseratio
  • 56,401
  • 21
  • 172
  • 421
25
function isStrictMode() {
    try{var o={p:1,p:2};}catch(E){return true;}
    return false;
}

Looks like you already got an answer. But I already wrote some code. So here

Ahmed Ashour
  • 4,209
  • 10
  • 29
  • 46
Thalaivar
  • 20,946
  • 5
  • 57
  • 67
12

Yep, this is 'undefined' within a global method when you are in strict mode.

function isStrictMode() {
    return (typeof this == 'undefined');
}
noseratio
  • 56,401
  • 21
  • 172
  • 421
Mehdi Golchin
  • 7,613
  • 2
  • 28
  • 36
5

More elegant way: if "this" is object, convert it to true

"use strict"

var strict = ( function () { return !!!this } ) ()

if ( strict ) {
    console.log ( "strict mode enabled, strict is " + strict )
} else {
    console.log ( "strict mode not defined, strict is " + strict )
}
4

Warning + universal solution

Many answers here declare a function to check for strict mode, but such a function will tell you nothing about the scope it was called from, only the scope in which it was declared!

function isStrict() { return !this; };

function test(){
  'use strict';
  console.log(isStrict()); // false
}

Same with cross-script-tag calls.

So whenever you need to check for strict mode, you need to write the entire check in that scope:

var isStrict = true;
eval("var isStrict = false");

Unlike the most upvoted answer, this check by Yaron works not only in the global scope.

potato
  • 785
  • 8
  • 17
0

Another solution can take advantage of the fact that in strict mode, variables declared in eval are not exposed on the outer scope

function isStrict() {
    var x=true;
    eval("var x=false");
    return x;
}
Yaron U.
  • 6,921
  • 2
  • 28
  • 45