gpt4 book ai didi

JavaScript 三元运算符 : what to put as the false option when none is required?

转载 作者:行者123 更新时间:2023-12-02 20:55:15 25 4
gpt4 key购买 nike

带有 if/else block ,如果 'if' 不为 true,则无需执行任何操作时,可以省略 else。

例如:

If (A) {
B;
}
// works perfectly well;

但是,当使用三元运算符时,空的“else”选项会引发错误。

例如

(A) ? B :  // throws error

(A) ? B // throws error

将 null 作为 else 选项会停止错误,并且似乎工作正常,但安全吗?或者,当不需要“else”部分时,使用三元语句的正确方法是什么?

例如

(A) ? B : null ; // no error but is it safe or is there a better alternative?

最佳答案

如果您愿意,也可以在单行上使用 if

if (a) b;

关于JavaScript 三元运算符 : what to put as the false option when none is required?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/61504844/

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