gpt4 book ai didi

javascript - If-else 语句的短路

转载 作者:行者123 更新时间:2023-12-02 17:26:10 25 4
gpt4 key购买 nike

所以我知道

variable && runTrue();

真正的意思

if(variable){
runTrue();
}
<小时/>

那有没有更简化的写法

if(variable){
runTrue();
}else{
runFalse();
}

而不是if-else

最佳答案

使用 conditional operator 的三元表达式? :是为了这种简单的二元选择而发明的:

function a() {alert('odd')}
function b() {alert('even')}
var foo = new Date() % 2;

foo? a() : b(); // odd or even, more or less randomly

相当于:

if (foo % 2) {
a(); // foo is odd
} else {
b(); // foo is even
}

关于javascript - If-else 语句的短路,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/10826717/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com