Welcome to the Treehouse Community
Want to collaborate on code errors? Have bugs you need feedback on? Looking for an extra set of eyes on your latest project? Get support with fellow developers, designers, and programmers of all backgrounds and skill levels here with the Treehouse Community! While you're at it, check out some resources Treehouse students have shared here.
Looking to learn something new?
Treehouse offers a seven day free trial for new students. Get access to thousands of hours of content and join thousands of Treehouse students and alumni in the community today.
Start your free trialAakash Srivastav
Full Stack JavaScript Techdegree Student 11,638 PointsString and Number
What does it mean "a letter string always come after the number string?" i,e if you compare a number and a letter , a number is less than a number.
2 Answers
Jason Anello
Courses Plus Student 94,610 PointsHi Aakash,
It helps to understand this by looking at an ascii chart like this one: http://www.asciitable.com/
In that table you can see that the digits come before the letters in the alphabet. When you make string comparisons like that, it's comparing based off the order in that table. The character "1" has a lower decimal value than the character "a", for example.
Aakash Srivastav
Full Stack JavaScript Techdegree Student 11,638 PointsOh..I got it.Thanks :)
Steven Parker
231,248 PointsThat's not quite what was said.
The actual sentence is "If you compared a number and a letter, a number is less than a letter."
Example:
var numberstring = "123";
var letterstring = "abc";
if (numberstring < letterstring) {
console.log("The letter string comes after the number string.");
}
Aakash Srivastav
Full Stack JavaScript Techdegree Student 11,638 PointsBut how..I didn't got that. Please explain.
Steven Parker
231,248 PointsYou understand alphabetical order, right? Where "a" comes before "f"?
Well, "5" comes before "a". That's all they are saying, numbers before letters.
Aakash Srivastav
Full Stack JavaScript Techdegree Student 11,638 PointsThanks Steven Parker
Aakash Srivastav
Full Stack JavaScript Techdegree Student 11,638 PointsAakash Srivastav
Full Stack JavaScript Techdegree Student 11,638 Pointsyeah..sorry..I mean that "a number is less than a letter". But how?