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 trialEnemuo Felix
1,895 PointsCode challenge
Pls, what Am I doing wrong Here? I'm stuck on the second task
var wholesalePrice = 5.45;
var retailPrice = 9.99;
var quantity = 47;
var salesTotal=retailPrice*quantity;
var profit=wholeSale*quantity-salesTotal;
<!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
Robin Versloot
7,326 PointsThe last line you've got it kind of backwards altough it might work like Catalin said. you said this:
var profit=wholeSale*quantity-salesTotal;
but the proper Math syntax is:
var profit = salesTotal - (wholesalePrice * quantity);
the code in the "()" makes it run first as the syntax will aknowledge that it should be used first and then use the first variable called salesTotal.
if I were you I'd check the videos one more time on the syntax of math in Javascript, if you don't learn the correct syntax in time, it will get really tricky in the end :)
catalin iordan
1,657 PointsOn the first line you declare a variable 'wholesalePrice', but on last line you used 'wholeSale'. I think that is the problem.
Enemuo Felix
1,895 PointsThank you all very much. Words can't describe how grateful I'm. Thank You