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 trialJohn Eyre
4,353 Pointswhy is this wrong? var profitPerUnit = 213.38 / 47;
var wholesalePrice = 5.45; var retailPrice = 9.99; var quantity = 47; var salesTotal = 9.99 * 47; var profit = 469.53 - 256.15; var profitPerUnit = 213.38 / 47;
var wholesalePrice = 5.45;
var retailPrice = 9.99;
var quantity = 47;
var salesTotal = 9.99 * 47;
var profit = 469.53 - 256.15;
var profitPerUnit = 213.38 / 47;
<!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
Jason Anders
Treehouse Moderator 145,860 PointsHi John,
The challenge does not want hard-coded values. In real-world applications, you will almost never use values that are hard-coded.
So instead of
var salesTotal = 9.99 * 47;
It should be
var salesTotal = retailPrice * quantity;
Keep Coding! :)
John Eyre
4,353 PointsIt threw me off a little because some were accepted as correct when I was using hard-coded values.
Jason Anders
Treehouse Moderator 145,860 PointsIt was probably because of what the Treehouse Code Checker was looking for. The ones that passed were probably only having the result checked, but the others may have been checking the code lines themselves. Strange, but glad you got it all figured! :)
John Eyre
4,353 PointsJohn Eyre
4,353 PointsYeah Thanks Jason, I figured that out not long after posting the question.