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

GEOFF DIGAN
GEOFF DIGAN
1,383 Points

What am i doing wrong it says there was an error with your code: SyntaxError: Parse error

var temperature = 37.5; alert Math.round(temperature);

3 Answers

Himanshu Chopra
Himanshu Chopra
3,055 Points

Hye! Seems like you want to alert temperature but you forgot to add parenthesis () for your alert function.

 alert (Math.round(temperature));
Himanshu Chopra
Himanshu Chopra
3,055 Points

You're welcome. Can you mark my answer If that worked for you.