Advertisement
Didart

Square Area

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