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 trialGedeon Bashimbe
1,026 PointsCan someone look over my code. https://w.trhou.se/i2g6mmtwa9
Code
2 Answers
KRIS NIKOLAISEN
54,971 PointsYou have a typo and missing bracket in your html
<script src="js/geometery.js"></script
should be
<script src="js/geometry.js"></script>
But your functions look good. To test you should use periods instead of commas in your values
console.log(areaRectangle(5,22));
console.log(volRectangle(4.5, 12.5, 17.4));
console.log(areaCircle(7.2));
console.log(volSphere(7.2));
Gedeon Bashimbe
1,026 Pointsok thanks.