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 JavaScript Basics (Retired) Working With Numbers Using Math Methods

what's wrong with this?

Can't seem to find what's wrong with this? Please help :)

script.js
var temperature = Math.round(37.5);
alert(temperature);
alert(Math.floor(temperature));
index.html
<!DOCTYPE HTML>
<html>
<head>
  <meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
  <title>JavaScript Basics</title>
</head>
<body>
<script src="script.js"></script>
</body>
</html>

3 Answers

diogorferreira
diogorferreira
19,363 Points

Hey madarauchiha, You were able to use the correct method Math.floor however, for the first challenge, you applied the rounding to the temperature variable. Meaning that when you used the Math.floor method onto the variable temperature you are applying it to the rounded value, not the original, which would be 38 in this case instead of 37.5.

var temperature = 37.5;
// alerts with the rounded value of 38
alert(Math.round(temperature));
// uses the method onto the original 37.5 value and outputs 37
alert(Math.floor(temperature));

Hope that helps!

Ah i see :) How stupid of me :) Thanks a bunch man!