Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

Recently, I ran some of my JavaScript code through Crockford's JSLint, and it gave the following error:

Problem at line 1 character 1: Missing "use strict" statement.

Doing some searching, I realized that some people add "use strict"; into their JavaScript code. Once I added the statement, the error stopped appearing. Unfortunately, Google did not reveal much of the history behind this string statement. Certainly it must have something to do with how the JavaScript is interpreted by the browser, but I have no idea what the effect would be.

So what is "use strict"; all about, what does it imply, and is it still relevant?

Do any of the current browsers respond to the "use strict"; string or is it for future use?

share|improve this question
16  
+1 for cleaning up your writing without strict need for getting your question answered (and for the nice question, of course, I was asking this myself, too)! – Marcel Korpel May 14 '10 at 0:10
14  
@Sean Please add "use strict" always! And if it breaks your code, it's a good occasion to become a better programmer and start writing good code. – Jose Faeti Aug 3 '11 at 14:14
17  
@Jose: in 2009, when I wrote that comment, no browser supported strict mode, and adding "use strict" was a timebomb. See bugzilla.mozilla.org/show_bug.cgi?id=579119 (Amazon screwed up) and bugzilla.mozilla.org/show_bug.cgi?id=593963 (Intel screws up.) Now that real browsers support strict mode, please do use it. (and make sure you test in FF4+ and Safari5.1+) – Sean McMillan Aug 3 '11 at 15:16
5  
@Sean: right :) Just don't like the fact that people get scared about such a good feature only because they see a high voted comment stating not to use it. – Jose Faeti Aug 3 '11 at 15:19
2  
According to the link to CanIUse provided by @Daniel-Dane in his comment below, IE won't support use strict until version 10. Even though IE has definitely dropped in the U.S. browser rankings, you can't realistically ignore it entirely. – hotshot309 Dec 28 '11 at 18:40
show 9 more comments

8 Answers

up vote 978 down vote accepted

This article about that might interest you: John Resig - ECMAScript 5 Strict Mode, JSON, and More

To quote some interesting parts:

Strict Mode is a new feature in ECMAScript 5 that allows you to place a program, or a function, in a "strict" operating context. This strict context prevents certain actions from being taken and throws more exceptions.

And:

Strict mode helps out in a couple ways:

  • It catches some common coding bloopers, throwing exceptions.
  • It prevents, or throws errors, when relatively "unsafe" actions are taken (such as gaining access to the global object).
  • It disables features that are confusing or poorly thought out.

Also note you can apply "strict mode" to the whole file... Or you can use it only for a specific function (still quoting from John Resig's article):

// Non-strict code...

(function(){
  "use strict";

  // Define your library strictly...
})();

// Non-strict code... 

Which might be helpful if you have to mix old and new code ;-)

So, I suppose it's a bit like the "use strict" you can use in Perl (hence the name?): it helps you make fewer errors, by detecting more things that could lead to breakages.

share|improve this answer
51  
do any of the current browsers respond to the "use strict" string or is it for future use? – Mark Rogers Aug 26 '09 at 16:24
21  
Changing the default after so many years ? Too late for that : it would break so many existing sites/scripts/applications... The only possible thing is to help make things better, for the future. – Pascal MARTIN Mar 4 '10 at 21:54
4  
I tried a small code snippet that would be invalid when using "use strict" in Firefox 3.6, Safari 5, Chrome 7 and Opera 10.6 (all Mac). No errors whatsoever, so i guess 'use strict' is not supported in any browser yet. Didn't test in IE9 though ;) – Husky Nov 10 '10 at 9:54
8  
Chrome 11 seems to pass all of these tests as does IE10 ie.microsoft.com/testdrive/HTML5/TryStrict/Default.html# – gman May 13 '11 at 17:27
36  
caniuse.com/#use-strict – Daniel-Dane Nov 5 '11 at 14:59
show 5 more comments

It's a new feature of ECMAScript5. John Resig wrote up a nice summary of it.

It's just a string you put in your js files (either at the top of your file or inside of a function) that looks like this:

"use strict";

Putting it in your code now shouldn't cause any problems with current browsers as it's just a string. It may cause problems with your code in the future if your code violates the pragma. For instance, if you currently have foo = "bar" without defining foo first, your code will start failing...which is a good thing in my opinion.

share|improve this answer
21  
I'm sorry I didn't pick yours, MARTIN's explanation was just more detailed, even though you were first to the scene with the correct answer. Still I gave you +1. – Mark Rogers Aug 26 '09 at 16:26
6  
Fail fast and fail loudly. – Niels Bom Jan 29 at 22:20

Another good explanation of strict mode, with plenty of examples:

ECMAScript 5 strict mode in Firefox 4

share|improve this answer

If people are worried about using use strict it might be worth checking out this article:

http://www.novogeek.com/post/ECMAScript-5-Strict-mode-support-in-browsers-What-does-this-mean.aspx

It talks about browser support, but more importantly how to deal with it safely:

function isStrictMode(){
    return !this;
} 
//returns false, since 'this' refers to global object and '!this' becomes false

function isStrictMode(){   
    "use strict";
    return !this;
} 
//returns true, since in strict mode, the keyword 'this' does not refer to global object, unlike traditional JS. So here,'this' is null and '!this' becomes true.
share|improve this answer
1  
You show us exactly why it is unwise and dangerous to use "use strict". – Erwinus Jan 12 at 11:20
11  
I disagree. I think this shows why its very useful. In essence it means that this returns its function and not the window – Jamie Hutber Feb 26 at 15:25

It's a part of ECMAScript 5, John Resig has a post about this in his blog.

share|improve this answer

If you use a browser released in the last year or so then it most likely supports JavaScript Strict mode. Only older browsers around before ECMAScript 5 became the current standard don't support it.

The quotes around the command make sure that the code will still work in older browsers as well (although the things that generate a syntax error in strict mode will generally just cause the script to malfunction in some hard to detect way in those older browsers).

share|improve this answer
4  
Then what does it do? – Anish Gupta May 20 '12 at 14:47
... this describes in part the compatibility, but not what it actually does. – Court S Jul 11 '12 at 16:04

Why should I add code like "use strict"; which is possible dangerous for my script to be run, and may shut it down for an unimportant reason??

This makes no sense and is a unnecessairy overhead, so I strongly suggest only using "use strict" for debugging and afterwards delete it again!

I just read somewhere in the internet:

In JavaScript, if a variable is not explicitly declared, it is implicitly assigned global scope.This may look fun to code in JS, but is a nightmare to maintain in huge projects. Strict mode throws error if variables are assigned values without declaring and hence implicit global variables will not be created. This is a huge win for the language as well as for huge projects.

Suggestion: only use globals if they're needed, and always use "var" before any other variable. But also don't use "use strict" in any productive environment, because it can implement its own bugs into your code...and in the end preventing runnable code from running in certain browsers!

I'm not the only one saying this: http://www.howtocreate.co.uk/strictJSFirefox.html

share|improve this answer
6  
The reason one would use "use strict" is to eliminate as many bugs as possible in code before releasing the code for live use. When a javascript module works with "use strict" it is more likely to be cross-browser compliant. Furthermore, code that works without "use strict" but not with it, often has some sort of bug that the browser is able to figure out. There is an implicit performance hit when the browser must try and guess how malformed code works, even though it still works. Finally, one can use "use strict" purely for code evaluation reasons and remove it in the final live version. – Mark Rogers Nov 11 '12 at 19:03
Probably you should read again what I wrote, because I wrote exactly the same in my second sentence as you wrote in your last sentence! Lol – mark Dec 17 '12 at 15:51
2  
...and the downvoters just showed everybody that they can't read a text. Happy downvoting! smile – mark Dec 17 '12 at 15:56
3  
The article you've linked to is about Firefox's "strict JavaScript warnings". This is misleading because these are not what this question is about. I also question what you mean by your assertion that "use strict" can cause bugs in some browsers, since you haven't provided an example. – Mark Amery Feb 9 at 10:52

Another great detailed article by Dmitry Soshnikov. As for me, all posts in this blog are very professional in describing ECMAScript core in details.

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.