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 trial

JavaScript JavaScript Basics (Retired) Making Decisions with Conditional Statements Comparison Operators

2 Answers

Hi 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.

Steven Parker
Steven Parker
229,785 Points

That'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.");
}