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 trialColin Grubbs
2,137 PointsDoes isNaN change the value of the variable to NaN?
When I build the message variable and write the message to the doc when the "not a number" test fails, I notice it changed the input you provide to "NaN" onto the web page. Does this have to do with the parseFloat method?
1 Answer
Peter Vann
36,427 PointsHi Colin!
No, isNaN is only a test function, it is not transformative.
More info:
https://www.w3schools.com/jsref/jsref_isnan.asp
https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/isNaN
I'd have to see your actual code to analyze the situation further...
This might address the parseFloat part of your question, though:
https://www.w3schools.com/jsref/tryit.asp?filename=tryjsref_parsefloat
(See what happens to var g)
I hope that helps.
Stay safe and happy coding!