Advertisement
popovIliya

March-2022-FirstStepsInCoding-Lab-SoftUni - inchesToCantimeters

Feb 26th, 2022
779
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. function convertor(input){
  2.  let r = Number(input[0]);
  3.  let res = r * 2.54;
  4.  console.log(res);
  5. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement