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 The Solution

When the isNaN method in this challenge finds that the number is number should it not have said isNaN(!num1) ?

to execute the condition statement? because if it comes back as true does is it mean the number is a number and the statement reads - value is not a number? That is what it reads in the solution. A bit confused.

1 Answer

isNan takes the value as a parameter and returns true if the given value is not a number and vice-versa.