Advertisement
-Annie-

CircleArea

May 24th, 2017
83
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. function calc(radius) {
  2.     "use strict";
  3.     let area = Math.PI * radius * radius;
  4.     console.log(area)
  5.     console.log(area.toFixed(2))
  6. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement