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 trialOmar Farag
4,573 PointsIs this a bug?
It asked me if ('lion' > 'zebra') was true or false. I clicked true, since 'l' comes before 'z' and is greater. However, it gave me an error. Am I missing something?
1 Answer
Jason Anello
Courses Plus Student 94,610 PointsHi Omar,
Since 'l' comes before 'z', you should think of 'l' as being lower or less than 'z'
This question would be very similar to asking something like 4 > 10
Since 4 comes before 10, 4 would be considered lower or less than 10 and the expression would be false.
Omar Farag
4,573 PointsOmar Farag
4,573 PointsOh, I get it. Thanks :)