Javascript 数字比较运算符到底如何处理字符串?
var i = ['5000','35000'];
alert((i[0] < i[1])?'well duh!':'fuzzy math?');
alert((Number(i[0]) < Number(i[1]))?'well duh!':'fuzzy math?');
这里发生了什么事?在第一个警报中,文本字符串“5000”的计算结果不小于“35000”。我假设 Javascript 在对字符串进行数字比较时使用 Number(),但显然情况并非如此。只是好奇 Javascript 在默认情况下到底是如何处理数字字符串比较的。
var i = ['5000','35000'];
alert((i[0] < i[1])?'well duh!':'fuzzy math?');
alert((Number(i[0]) < Number(i[1]))?'well duh!':'fuzzy math?');
What's happening here? In the first alert, the text string "5000" evaluates as not less than "35000". I assumed Javascript used Number() when numerically comparing strings, but apparently that's not the case. Just curious how exactly Javascript handles numerically comparing the strings of numbers by default.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
Javascript 按字符值比较字符串,无论字符串是否看起来像数字。
您可以在规范第11.8.5节第4点中看到这一点
。<代码>'a'< 'b' 和
'ab'
'ac
都是 true。Javascript compares strings by character value, whether the strings look like numbers or not.
You can see this in the spec, section 11.8.5, point 4.
'a' < 'b'
and'ab' < 'ac
are both true.