didkoslawow

Untitled

Sep 11th, 2022
70
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.11 KB | None | 0 0
  1. function convertor(input) {
  2. let inch = Number(input[0]);
  3. let cm = inch * 2.54;
  4. console.log(cm);
  5. }
Advertisement
Add Comment
Please, Sign In to add comment