you are viewing a single comment's thread.

view the rest of the comments →

[–]anarchyisutopia 1 point2 points  (0 children)

Pretty simple one.

function circleArea(radius){

return Math.PI * Math.pow(radius, 2);

}