grigorb57

Square area

Mar 29th, 2022 (edited)
52
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. function squareArea(input){
  2.  
  3.     let area = Number(input[0]);
  4.     let result = area*area;
  5.     console.log(result)
  6. }
  7.  
  8. squareArea([5]);
Add Comment
Please, Sign In to add comment