up vote 306 down vote favorite
68
share [g+] share [fb]

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. And 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?

Thanks!

link|improve this question

1  
+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
4  
@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
7  
@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
4  
@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
1  
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
feedback

5 Answers

up vote 208 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.

link|improve this answer
8  
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
11  
“It disables features that are confusing or poorly thought out” — Yikes. Really? So it’s like a “Make the language less crap” option. (You’d hope that would be the default.) – Paul D. Waite Mar 4 '10 at 21:47
2  
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
3  
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
3  
Quick update: Firefox 4 has complete support for strict mode, and as far as I can tell, no other browser does. Safari and Chrome have "partial" support, but I don't really know what that means. – musicfreak Feb 8 '11 at 2:02
show 6 more comments
feedback

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.

link|improve this answer
4  
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
1  
No need to apologize. Thanks for the +1. – seth Aug 26 '09 at 16:29
feedback

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

ECMAScript 5 strict mode in Firefox 4

link|improve this answer
feedback

And there's also this video: Changes to JavaScript, Part 1: EcmaScript 5.

link|improve this answer
feedback

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

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

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