gpt4 book ai didi

javascript - 严格值比较(小于/大于)

转载 作者:塔克拉玛干 更新时间:2023-11-02 22:00:08 25 4
gpt4 key购买 nike

我很确定以下行为不正确(至少在我看来)是因为一些真实的疯狂:

var x = 5;
0 < x < 10 // True, and returns true.
0 < x < 2 // False, and returns true.
0 < x < 0 // False, and returns false.

按照我的理解,(0 < 5) 的计算结果为真,(true < 2) 的计算结果也为真(即 1 < 2)。我用第三个陈述对此进行了测试,这似乎证实了我的理论。现在问题来了:有没有办法在没有大量额外代码的情况下使这个“工作”?

最佳答案

"...is there any way to make this 'work' without large amounts of extra code?"

当然,使用&&...

(0 < x) && (x < 10)

如果你愿意,你可以去掉括号。

关于javascript - 严格值比较(小于/大于),我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/9319004/

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