admin管理员组文章数量:1349697
Quick question. I just came across the following in a JS file:
if (0) {
// code
}
What's the purpose of this if statement? Which cases would the code execute? It currently doesn't run the code in the if clause.
Quick question. I just came across the following in a JS file:
if (0) {
// code
}
What's the purpose of this if statement? Which cases would the code execute? It currently doesn't run the code in the if clause.
Share Improve this question edited Jul 20, 2011 at 19:11 Lightness Races in Orbit 386k77 gold badges666 silver badges1.1k bronze badges asked Jul 20, 2011 at 19:10 Alex HeydAlex Heyd 1,3231 gold badge10 silver badges17 bronze badges 5- 5 Quick way to ment or disable debugging code possibly? – Brad Christie Commented Jul 20, 2011 at 19:11
-
Just in case someone does a
#define 0 1
? – Marc B Commented Jul 20, 2011 at 19:12 - @Marc B: You do know that's impossible in JavaScript don't you? :) – pimvdb Commented Jul 20, 2011 at 19:14
- thanks for all the answers. I've never thought of that way of menting out code. Sorry I can't mark all answers below as the answer =/ – Alex Heyd Commented Jul 20, 2011 at 19:17
- @pimvdb Is there any language where you can #define a numeric token? – Stewart Commented Jul 21, 2011 at 9:55
6 Answers
Reset to default 9It looks like an artifact of the development process. Wrapping code like that gives you a quick, 1-character way to effectively ment out a block of code. It's quicker to toggle than a typical multi-line ment.
Someone has used that to effectively ment out a large chunk of code.
They probably meant to remove it entirely before releasing to the public, but forgot.
Actually, in Javascript, some code runs even in such block. For example, variables being defined in if(0)
block will be defined with the value undefined
:
if (0)
{
var f = 1;
}
f; //undefined
g; //ReferenceError
Another good example is the case of declaring functions in blocks. This is undefined behaviour in Ecmascript, so the results may vary across browsers:
if (0)
{
function f() {}
}
typeof f; //"undefined" in Firefox, "function" in other browsers
IIRC some bulletin board software generates 0
or 1
on the server side; see @eds's post.
It won't run. It could be someone was trying to ment out the code and there were too many /* */
in the middle (or maybe there was some other reason why the original author didn't want to use /* */
?). Regardless of the reason, if(0){}
means if(false){}
. The code between the braces will never run.
that's possible temporary disabled part of code
It's probably just an easy way to toggle enabling/disabling code, but what you may be seeing is JavaScript code that was rendered by a server-side language. So, for example, if you were writing in PHP, and you wanted client-side JavaScript to run if your PHP variable $doThis was non-null, you might write
if (<? echo $doThis; ?>) {
// do stuff...
}
There aren't many situations where this happens, but I know Blogger uses technique where it displays the number of ments below a post.
本文标签: javascriptPurpose of if(0) code Stack Overflow
版权声明:本文标题:javascript - Purpose of if(0){ code }? - Stack Overflow 内容由网友自发贡献,该文观点仅代表作者本人, 转载请联系作者并注明出处:http://www.betaflare.com/web/1743866281a2552642.html, 本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌抄袭侵权/违法违规的内容,一经查实,本站将立刻删除。
发表评论