admin管理员组文章数量:1344195
I have the following script
document.write("12" < "2");
which returns true. Any reason why? The documentation says that javascript pares strings numerically but, I don't see how "12" is less than "2".
I have the following script
document.write("12" < "2");
which returns true. Any reason why? The documentation says that javascript pares strings numerically but, I don't see how "12" is less than "2".
Share Improve this question asked Jun 5, 2013 at 22:38 RobertRobert 10.4k20 gold badges89 silver badges140 bronze badges 4- 3 What documentation did you see that in? It is incorrect. They're pared lexicographically. – Paul Commented Jun 5, 2013 at 22:40
- developer.mozilla/en-US/docs/Web/JavaScript/Guide/… – Robert Commented Jun 5, 2013 at 22:43
-
1
The page you linked to says
"Strings are pared based on standard lexicographical ordering, using Unicode values."
That means that'12' < '2'
just like'a2' < 'b'
. – Paul Commented Jun 5, 2013 at 22:46 - @Paulpro - Got it (sorry). Didn't realize that came from the OP. Deleting my ment.... – jahroy Commented Jun 5, 2013 at 22:53
4 Answers
Reset to default 10JavaScript pares strings character by character until one of the characters is different.
1 is less than 2 so it stops paring after the first character.
I believe it is doing a lexicographic parison - the first char in string one is '1', which is less than the first char of string two, which is '2'. More about Lexicographic order here: http://en.wikipedia/wiki/Lexicographical_order
This is because the first character of "12"
is 1
, which es before "2"
; and JavaScript string parison is lexically/alphabetically, rather than numerically. Though it appears partially numeric, since 1
is sorted ahead of 2
.
You can, however, simply pare the numbers as numbers:
document.write(parseFloat("12") < parseFloat("2"));
Try:
document.write(parseInt("12") < parseInt("2"));
本文标签: javascript comparison of stringsStack Overflow
版权声明:本文标题:javascript comparison of strings - Stack Overflow 内容由网友自发贡献,该文观点仅代表作者本人, 转载请联系作者并注明出处:http://www.betaflare.com/web/1743618522a2511138.html, 本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌抄袭侵权/违法违规的内容,一经查实,本站将立刻删除。
发表评论