Can I execute multiple statements with shorthand if && in Javascript? - Stack Overflow

var foo = true;function doThis() {alert("do this");}function doThat() {alert("do that&q

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 badges
Add a ment  | 

3 Answers 3

Reset to default 11

Yes, 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.

发布者:admin,转转请注明出处:http://www.yc00.com/questions/1743671861a4487917.html

相关推荐

发表回复

评论列表(0条)

  • 暂无评论

联系我们

400-800-8888

在线咨询: QQ交谈

邮件:admin@example.com

工作时间:周一至周五,9:30-18:30,节假日休息

关注微信