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

It's working but not accepted as correct...

I probably have a syntax error that I'm not seeing. Help?

script.js
var temperature = 37.5;
Math.round(temperature);
alert(Math.round(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>

2 Answers

Jonathan Grieve
MOD
Jonathan Grieve
Treehouse Moderator 91,253 Points

It looks like you're using the same function so you're going to get the same result.

Remember that when you use Math.round you're rounding the number up. The second part of the challenge wants you to round the number down. So your challenge should look like this

alert(Math.round(temperature));
alert(Math.floor(temperature));

Good luck :)

Jakob Wozniak
Jakob Wozniak
17,896 Points

Your code looks correct to me! You don't actually need the first part-

Math.round(temperature);

The rest should work fine. Maybe there was just a connection error.

I hope this helps!