1. var strict = (function { return this; });
  2. mode strict = (function() { return !this; }());
  3. var strict = (function() { return !this; }());
  4. mode strict = (function { });
4 views

1 Answers

Answer: Option 3

The above code defines and invokes a function to determine if we’re in strict mode.

4 views

Related Questions