admin管理员组文章数量:1343931
var foo = true;
function doThis() {alert("do this");}
function doThat() {alert("do that");}
// fine
if(foo) {
doThis();
doThat();
}
// fine
foo && (doThis());
// NO, syntax error
foo && (doThis(); doThat(););
Is this even possible? Or I should'v not done this at all?
var foo = true;
function doThis() {alert("do this");}
function doThat() {alert("do that");}
// fine
if(foo) {
doThis();
doThat();
}
// fine
foo && (doThis());
// NO, syntax error
foo && (doThis(); doThat(););
Is this even possible? Or I should'v not done this at all?
Share asked Apr 13, 2013 at 19:31 user1643156user1643156 4,54711 gold badges41 silver badges59 bronze badges3 Answers
Reset to default 11Yes, if you separate the functions with mas:
foo && (bar(), baz())
This is a terrible coding practice, but it's useful for minifying code, or the purposes of code golf.
if (foo) {
bar();
baz();
}
turns into:
foo&&(bar(),baz())
and
if (!foo) {
bar();
baz();
}
turns into:
foo||(bar(),baz())
and
if (foo) {
bar();
baz();
} else {
fizz();
buzz();
}
turns into:
foo?(bar(),baz()):(fizz(),buzz())
although the variables would likely be renamed in a minifier to something like:
a&&(b(),c())
You can't put a semicolon in the middle of an expression.
foo && (doThis() || doThat());
As doThis
has no return value, it evaluates as follows:
true && (doThis() || doThat());
(doThis() || doThat());
(undefined || doThat());
(doThat());
undefined;
But as answered by @zzzzBov, the ma operator can also be used and it is better in the sense that it doesn't depend on return values.
Note that such shorthands are not very readable, you should let minification tools do that kind of work. (e.g. Closure Compiler)
You can use the ma operator:
foo && (doThis(), doThat());
Of course if doThis
returns a truthy
value you can also have:
foo && doThis() && doThat();
But it's more like;
if (foo)
if (doThis())
doThat();
However usually this "shorthand" are not used if there is no assignment on the left, because makes the code uglier and less readable.
本文标签: Can I execute multiple statements with shorthand if ampamp in JavascriptStack Overflow
版权声明:本文标题:Can I execute multiple statements with shorthand if && in Javascript? - Stack Overflow 内容由网友自发贡献,该文观点仅代表作者本人, 转载请联系作者并注明出处:http://www.betaflare.com/web/1743671861a2519668.html, 本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌抄袭侵权/违法违规的内容,一经查实,本站将立刻删除。
发表评论