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.

Gianni Zamora
9,547 PointsHelp!!
I don't know why but I put the exact code into wwebschools and it worked (i replaced diameter with 5.75 in webschools). It says to find the circumference and put it into var circumference so wouldn't you think that the code will work?, Thank you
var diameter = 5.75,
a = 17,
b = 42,
c = 1337,
ageIfILiveToYear2100 = (new Date(2100, 0, 1) - new Date(1995, 5, 16, 7, 20)) / (1000 * 60 * 60 * 24 * 365.242);
var circumference = (Math.Pi * diameter);
2 Answers

Shawn Flanigan
Courses Plus Student 15,803 PointsYou'll just need to capitalize both P and I in Pi for this to work. Math.Pi
is undefined, but Math.PI
will give you a value of 3.141...

Gianni Zamora
9,547 Pointsthanks you got it:)

Carla Thomas
Front End Web Development Techdegree Student 16,039 PointsHi Gianni Z,
Don't forget to choose "BEST ANSWER" for Shawn's response....he gets points helping :)
Shawn Flanigan
Courses Plus Student 15,803 PointsShawn Flanigan
Courses Plus Student 15,803 PointsYou'll just need to capitalize both P and I in Pi for this to work.
Math.Pi
is undefined, butMath.PI
will give you a value of 3.141...