Welcome to the Treehouse Community
The Treehouse Community is a meeting place for developers, designers, and programmers of all backgrounds and skill levels to get support. Collaborate here on code errors or bugs that you need feedback on, or asking for an extra set of eyes on your latest project. Join thousands of Treehouse students and alumni in the community today. (Note: Only Treehouse students can comment or ask questions, but non-students are welcome to browse our conversations.)
Looking to learn something new?
Treehouse offers a seven day free trial for new students. Get access to thousands of hours of content and a supportive community. Start your free trial today.

Kosuke Kondo
1,235 PointsOpen an alert dialog a second time and display the temperature variable rounded downward to the nearest integer
I answered this as below. this looks correct, but...
var temperature = 37.5
alert(Math.floor(temperature));
Could you help me?
2 Answers

Marcus Parsons
15,718 PointsHey Kosuke,
Your code is correct, but your first alert box disappeared! You should have the first alert box with Math.round
and then a 2nd alert box with Math.floor
as you have it:
var temperature = 37.5
alert(Math.round(temperature));
alert(Math.floor(temperature));

Kosuke Kondo
1,235 PointsThank you, Marcus! :)

Marcus Parsons
15,718 PointsYou are most welcome, Kosuke! Happy Coding! :)