gpt4 book ai didi

javascript - 在 if 语句中获取失败条件

转载 作者:行者123 更新时间:2023-11-30 08:34:34 25 4
gpt4 key购买 nike

<分区>

考虑以下 if 语句

if (a === null || b === null || c === null) {
// I want the failing condition
}

是否有可能在不需要检查每一个条件的情况下获得失败条件

if (a === null || b === null || c === null) {
if (a===null){alert('a failed the check');}
if (b===null){alert('b failed the check');}
if (c===null){alert('c failed the check');}
}

我知道在上面的例子中很容易让它动态化,考虑一个执行不同测试的真实世界的例子。

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