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

Gal Parselany
Full Stack JavaScript Techdegree Graduate 26,281 PointsMy Solution :
const pi = Math.PI;
function rectArea(width, height) {
const area = width * height;
return area;
}
function rectPrism(width, height, length) {
const prism = width * height * length;
return prism;
}
function circArea(radius) {
const area = pi * (radius ** 2);
return area;
}
function sphereVolume(radius) {
const volume = 4/3 * pi * (radius ** 3);
return volume;
}
console.log(rectArea(5, 22));
console.log(rectPrism(4.5, 12.5, 17.4));
console.log(circArea(7.2));
console.log(sphereVolume(7.2));

Gal Parselany
Full Stack JavaScript Techdegree Graduate 26,281 Pointsthanks. will take care

Steven Parker
241,485 PointsYou can fix it now, click the little rectangle with the 3 dots to reveal the option to "Edit Question".

Gal Parselany
Full Stack JavaScript Techdegree Graduate 26,281 Pointsthanks again
Steven Parker
241,485 PointsSteven Parker
241,485 PointsCode needs special formatting to look right in the forum. Take a look at these videos about Posting a Question, and this one on using Markdown formatting to preserve the code's appearance.