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

what am I doing wrong?

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);
     var    chance = (Math.random () * 20);
Dave McFarland
Dave McFarland
Treehouse Teacher

Hi Reagan Schiller

To put code into a forum post use triple back ticks -- ``` -- not triple single quotes -- '''.

I fixed your code in this discussion, but in the future here's a forum discussion that describes how to add HTML, CSS, JavaScript or other code to the forum: https://teamtreehouse.com/forum/posting-code-to-the-forum

1 Answer

Hayden Taylor
Hayden Taylor
5,076 Points

The 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.

also answered here --> http://teamtreehouse.com/forum/create-a-variable-named-circumference-and-assign-the-correct-value-to-it-by-using-the-diameter-variable-and-mathpi-2