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 trialAndres Maza
3,640 PointsQuestions regarding last task in Javascript, Numbers
Hello!
I've recently encountered a little bit of trouble with this task. I'm being asked to create a variable named "circumference" and give it a value of Math.PI(diameter). When I press the "check work" button I get the following message:
Bummer! No variable named "circumference" has been defined. Make sure to declare the variable like: var circumference =...
Heres the following code:
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);
And here's a screenshot of the problem
http://i.imgur.com/EbuzbAZ.png
Thank you in advance!
1 Answer
Scott Craig
41,171 PointsCheck this answer out
https://teamtreehouse.com/forum/bummer-no-variable-named-circumference-has-been-defined
Andres Maza
3,640 PointsAndres Maza
3,640 PointsGot it! Thank You!
Andres Maza
3,640 PointsAndres Maza
3,640 PointsGot it! Thank You!