admin管理员组文章数量:1344931
Is it possible, perhaps by using some directive in the JavaScript code, to throw warnings or errors if variables are used without being declared first?
In case that isnt possible, is there perhaps some plugin to force Eclipse (or any other IDE) to detect undeclared variables?
Is it possible, perhaps by using some directive in the JavaScript code, to throw warnings or errors if variables are used without being declared first?
In case that isnt possible, is there perhaps some plugin to force Eclipse (or any other IDE) to detect undeclared variables?
Share Improve this question asked May 26, 2011 at 4:30 thunderboltzthunderboltz 3,4573 gold badges23 silver badges20 bronze badges2 Answers
Reset to default 9Yes, it's possible to do this using strict mode. You enable it by putting a statement containing the string literal "use strict"
at the top of a file or function to enable strict mode for that scope.
"use strict";
doesNotExist = 42; // this throws a ReferenceError
This feature is now supported by all updated browsers. Older browsers wont' throw an error since "use strict";
is a valid statement and is simply ignored by browsers that don't support it. You can therefore use this to catch bugs while developing, but don't rely on it throwing an exception in your users' browsers.
Strict mode
JavaScript's strict mode is a way to opt in to a restricted variant of JavaScript, thereby implicitly opting-out of "sloppy mode". Strict mode isn't just a subset: it intentionally has different semantics from normal code.
Strict mode for an entire script is invoked by including the statement
"use strict";
before any other statements.
(Source, Documentation)
Edit: This answer is now incorrect; see "use strict";
per answer above (but JSLint is still handy).
This feature is akin to VB/VBA's Option Explicit
and PHP7's declare(strict_types = 1);
.
The feature you are looking for is sometimes called Option Explicit
in other languages (I think it es from Visual Basic). JavaScript does not have it.
If you are looking for a way to check your variable usage, try JSLint.
本文标签: Is it possible to force JavaScript to declare variables before useStack Overflow
版权声明:本文标题:Is it possible to force JavaScript to declare variables before use? - Stack Overflow 内容由网友自发贡献,该文观点仅代表作者本人, 转载请联系作者并注明出处:http://www.betaflare.com/web/1743756082a2533535.html, 本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌抄袭侵权/违法违规的内容,一经查实,本站将立刻删除。
发表评论