gpt4 book ai didi

javascript - 这段 JS 代码在 if...else 格式中是什么样子的?

转载 作者:行者123 更新时间:2023-11-28 17:53:40 26 4
gpt4 key购买 nike

以下内容如何以 if/else 格式编写?

hours == 0 ? 12 : (hours > 12) ? hours - 12 : hours

最佳答案

if (hours == 0) {
return 12;
} else if (hours > 12) {
return hours - 12;
} else {
return hours;
}

理想情况下,您还应该使用“===”运算符而不是“==”。

关于javascript - 这段 JS 代码在 if...else 格式中是什么样子的?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/44932119/

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