MilaDimitrovaa

square area

Oct 31st, 2020
2,553
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. function squareArea(input){
  2.  
  3. let a = Number(input);
  4. let area = a * a;
  5. console.log(area);
  6.  
  7. }
  8. squareArea();
  9.  
  10.  
Advertisement
Add Comment
Please, Sign In to add comment