I include the statement:
"use strict";
at the beginning of most of my Javascript files.
JSLint has never before warned about this. But now it is, saying:
Use the function form of "use strict".
Does anyone know what the "function form" would be?
|
I include the statement:
at the beginning of most of my Javascript files. JSLint has never before warned about this. But now it is, saying:
Does anyone know what the "function form" would be? |
||||
|
|
|
Include See Douglas Crockford's latest blog post Strict Mode Is Coming To Town. Example from that post:
|
||||
|
|
|
If you're writing modules for NodeJS, they are already encapsulated. Tell JSLint that you've got node by including at the top of your file:
|
|||||||||
|
|
I'd suggest to use jshint instead. It allows to suppress this warning via If you are writing a library, I would only suggest using global strict if your code is encapsulated into modules as is the case with nodejs. Otherwise you'd force everyone who is using your library into strict mode. |
|||
|
|
|
This is how simple it is: If you want to be strict with all your code, add But if you only want to be strict with some of your code, use the function form. Anyhow, I would recomend you to use it at the beginning of your JavaScript because this will help you be a better coder. |
|||
|
|
|
There's nothing innately wrong with the string form. Rather than avoid the "global" strict form for worry of concatenating non-strict javascript, it's probably better to just fix the damn non-strict javascript to be strict. |
|||
|
|