gpt4 book ai didi

javascript字符串比较和比较运算符不起作用?

转载 作者:行者123 更新时间:2023-11-28 16:25:55 25 4
gpt4 key购买 nike

我正在编写 shelley powers 编写的 javascript 食谱。在书中,

If two string literals only vary based on case, the uppercase characters are lexically greater than the lowercase letter:

var sOne  = "Cat";
var sTwo = "cat";
if (sOne >= sTwo) // true, because 'C' is lexically greater than 'c'

但我无法得到相同的结果。这仅适用于我:

 var sOne = "Cat";
var sTwo = "cat";
if (sOne < sTwo) alert("whatever here");

这里弹出一个警报。我很困惑。谢谢大家!

最佳答案

这本书有误。它列于 the errata .

关于javascript字符串比较和比较运算符不起作用?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/8017911/

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