Tagged Questions
307
votes
5answers
46k views
What does “use strict” do in javascript, and what is the reasoning behind it?
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 ...
8
votes
2answers
226 views
Finding justification in some of Crockford's claims
I've read Crockford's JavaScript: The Good Parts and I use his validator JSLint. He is a world reference, so I follow his advice.
Sometimes, I'm left wondering the justification behind his ...
1
vote
0answers
69 views
JSLint complains about function expression namespace syntax
Alright, I know what's the difference between a FunctionDeclaration and a FunctionExpression. @CMS did a great job of explaining that. Till recently, I used to use the same syntax for creating lambda ...