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 trialFatima Osman
2,399 PointsI'm stuck with this question.
const temperature = 37.5;
const tempRounded = Math.round(temperature);
const tempRoundDown = Math.floor(tempRounded);
2 Answers
Brandon White
Full Stack JavaScript Techdegree Graduate 35,771 PointsHi Fatima Osman,
The second part of the challenge asks you to round the temperature variable down, but you're rounding the tempRounded variable down.
itay zelig
2,951 Pointsso how we go from here? i didnt understand ether