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

Testing this out, why does this work?

function isAdult( age) { if (age && age >= 18) { return true; } else { return false; }

}

console.log(isAdult(17.99999999999999)); returns false

console.log(isAdult(17.999999999999999)); returns true

1 Answer

Steven Parker
Steven Parker
229,732 Points

This demonstrates how JavaScript handles it when you exceed the precision limits of stored numbers. Perhaps an even better demonstration is just to log the number directly:

console.log(17.99999999999999);  // shows 17.99999999999999
console.log(17.999999999999999); // shows 18

I found an article you might find interesting online about Overcoming Javascript numeric precision issues.