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 Doing Math

Marina Klimi
PLUS
Marina Klimi
Courses Plus Student 1,080 Points

I can not understand where I am wrong

I am writing the following code: var profitPerUnit = 213.38 / 47; and the system responds the following: Bummer! Did you use the / symbol to divide profit by quantity?

I can not understnd as I have used he '/' symbol. Thanks Marina

script.js
var wholesalePrice = 5.45;
var retailPrice = 9.99;
var quantity = 47;
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

Adam Beer
Adam Beer
11,314 Points

Hi Marina! First task.

Create a new variable salesTotal that contains the total of the retailPrice multiplied by the quantity variable.

Just create a new variable salesTotal. var salesTotal equal to retailPrice multiplied quantity.

Second task.

Create another variable named profit. It should hold the value of the salesTotal variable minus the wholesalePrice multiplied by the quantity. In other words, if you sold 47 items for 9.99 but only paid 5.45 for each item, how much money did you make?

Create a new variable named profit. var profit equal to salesTotal minus wholesalePrice multiplied quantity; Hope this help!

Marina Klimi
PLUS
Marina Klimi
Courses Plus Student 1,080 Points

Adam thank you very much for your help. Have a nice day. Marina

Adam Beer
Adam Beer
11,314 Points

Your welcome! You too.