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 Making Decisions in Your Code with Conditional Statements Test Multiple Conditions With the && Operator

Multiple Conditions I tested my code in the console and that's what I got back: age = 25; 25

I tested this code in the console and that's what I got back:

age = 25; 25 ( 20< age && 30< age) false

any ideas why my Mozilla browser stated it as false? I also tried Chrome but the same happened.. All help appreciated :)

1 Answer

"&&" is AND ! 25 is bigger than 20 but is not bigger than 30 . Becouse one of them is True and one is False the result is FALSE . your console is right .

Okay after an hour when I read this again I admit you’re right. Time for break:) thank you!