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 trialAmber Wells
Front End Web Development Techdegree Student 18,493 PointsTask 1 stops working even though I changed nothing about it. Bug or just doing it wrong?
Tried many different locations for Math.floor and even created a new var: var (temperature) = Math.round (37.5); alert (temperature); var (test) = Math.floor (37.5); alert (test);
var temperature = Math.round (37.5);
var test = Math.floor (37.5);
alert (temperature);
alert (test);
<!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>
1 Answer
andren
28,558 PointsYou are doing it incorrectly, though it could be argued that allowing your code to pass task 1 was by itself a bug. As your code did not act in the way the challenge intended.
You are not supposed to change the temperature
variable from its starting value of 37.5. You are meant to use the Math.round
and Math.floor
methods directly in the alert function, not on the variable assignment. Like this:
var temperature = 37.5;
alert(Math.round(temperature)); //alert with temperature rounded
alert(Math.floor(temperature)); //alert with temperature floored
Amber Wells
Front End Web Development Techdegree Student 18,493 PointsAmber Wells
Front End Web Development Techdegree Student 18,493 PointsAh! Thank you for clarifying.