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

JavaScript JavaScript Foundations Numbers The Math Object

Possible Bug

I think there may be a bug here.

Question: Create a variable named "circumference" and assign the correct value to it by using the "diameter" variable and Math.PI. See the comment in the script for more information.

Provided 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);

My answer:

var circumference = math.PI(diameter);

Shows as incorrect, and this explanation is given: Bummer! No variable named "circumference" has been defined. Make sure to declare the variable like: var circumference =...

Note: I noticed incorrect syntax can cause strange hint messages, but I am almost certain I have this correct.

4 Answers

Remember that Math.PI is a constant, not a function. You must multiply it by the diameter instead of passing it as an argument.

like this: var circumference = math.PI() * diameter;

No, like this:

var circumference = Math.PI * diameter;

Ok that did it. Perhaps I should pay better attention!! Thanks Eirik!!

No problem, glad to help.

Need help here - I tried var circumference = Math.PI * diameter; and got the error = "Bummer! No variable named "circumference" has been defined. Make sure to declare the variable like: var circumference =..." using Safari browser in case that's relevant.