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 Review Conditional Statements and Comparison Operators

Hunter Shaw
Hunter Shaw
2,187 Points

How is 'lion' not greater than 'zebra'? In the example he used in the video he used 'apple' is > (some b word).

Lion should be greater than Zebra because Z is at the end of the alphabet. However, it is wrong?

2 Answers

andren
andren
28,558 Points

You are misremembering the video. In the video the example provided was 'apple' < 'bear', so the < (less than) operator was used, not the > (greater than) operator.

When you compare strings to each other letters later in the alphabet will be considered greater than those that comes before. So 'A' is less than 'B', 'C' is less than 'D' and so on.

It's also worth noting that capital letters are considered to be lesser than non-capitalized letters. So 'a' is actually greater than 'B'.

Steven Parker
Steven Parker
229,732 Points

With strings, "greater than" means "comes later in the alphabet". So "zebra" is "greater than" "lion".

You may have incorrectly recalled the video example, I believe you're referring to the point where he points out that "apple" is less than "bear".