Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我的脚本中有这样的声明:
if(some condition) { false; //rest of code }
我没有将声明的含义false;理解为独立声明。
false;
这种说法根本毫无用处。
如果some condition没有副作用,您显示的整个代码什么都不做。
some condition
很可能有人忘记了某些东西,例如return.
return
您需要从函数返回值,或将其分配给变量。
例如:
function myFunction() { if(some_condition) { return false; } }
或者
var my_var; if(some_condition) { my_var = false; }