Advertisement
popovIliya

March-2022-FirstStepsInCoding-Lab-Soft Uni - Square Area

Feb 26th, 2022
929
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.   let area = a * a;
  4.   console.log(area);
  5. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement