Advertisement
sanjiisan

Untitled

May 13th, 2017
69
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.18 KB | None | 0 0
  1. function circle(r) {
  2. if (typeof r === 'number') {
  3. console.log(Math.PI * r * r, 'pole');
  4. console.log(Math.PI * 2 * r, 'obwód');
  5. }
  6. else {
  7. return false;
  8. }
  9. }
  10.  
  11. circle(3);
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement