gpt4 book ai didi

Javascript:比较 10.0 以上的字符串数字

转载 作者:行者123 更新时间:2023-12-01 02:21:36 24 4
gpt4 key购买 nike

在ajax查询之后我得到了下一个数字:

var a = "5.20";
var b = "7.20";
var c = "11.20";

我注意到如果比较上面的数字 10.00该条件为假。我不明白为什么会发生这种情况

if (b > a) console.log("higher"); // true
if (c > b) console.log("higher"); // not true

我已经用下一个代码解决了这个问题(它也应该可以工作 parseFloat )

if ((+c) > (+b)) console.log("higher"); // true

最佳答案

"5">"10""m">"ba" 的原因相同。字符串按字母顺序比较(即使它们包含数字) - 或者更确切地说 lexicographically .

关于Javascript:比较 10.0 以上的字符串数字,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/49172593/

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