Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.
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.

share|improve this question

1 Answer

up vote 4 down vote accepted

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.

share|improve this answer
Thanks! That point 4(a) string comparison prefix criteria is pretty interesting too. – Wick Nov 18 '11 at 3:24
Okay I'm still missing something -- I understand your examples above, but I don't understand how the character value of "5000" is not less than the character value of "35000". Can you run me through how the character values are calculated for my specific example? – Wick Nov 18 '11 at 3:39
1  
@Wick: "5" is more than "3". This is a purely character-based comparison. – SLaks Nov 18 '11 at 3:56
Doh, right. Thanks again! :) – Wick Nov 18 '11 at 4:07

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.