Javascript 数字比较运算符到底如何处理字符串?

发布于 2024-12-16 16:17:06 字数 317 浏览 0 评论 0原文

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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

凡尘雨 2024-12-23 16:17:06

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.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文