Welcome to the Treehouse Community
The Treehouse Community is a meeting place for developers, designers, and programmers of all backgrounds and skill levels to get support. Collaborate here on code errors or bugs that you need feedback on, or asking for an extra set of eyes on your latest project. Join thousands of Treehouse students and alumni in the community today. (Note: Only Treehouse students can comment or ask questions, but non-students are welcome to browse our conversations.)
Looking to learn something new?
Treehouse offers a seven day free trial for new students. Get access to thousands of hours of content and a supportive community. Start your free trial today.

Fabian George
Courses Plus Student 11,133 PointsCreate a variable named "circumference" and assign the correct value to it by using the "diameter" variable and Math.PI.
Help I'm not understanding how to solve this problem. I read the question multiple time but I still can not come up with a way to wright out the variable to solve this problem with.
2 Answers

Hayden Taylor
5,076 PointsThe answer is
var circumference = 2 * Math.PI * (diameter / 2);
Because the formula for circumference is 2 * PI * Radius; so you must divide the diameter by 2 to get the correct R value.

Fabian George
Courses Plus Student 11,133 PointsThank you! I get know. You're awesome.
Hayden Taylor
5,076 PointsHayden Taylor
5,076 Pointsanything you dont understand please comment back.