TZinovieva

Convert Meters to Kilometers

Jan 19th, 2023
52
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. function convertMetersToKilometres(meters) {
  2.     console.log(`${(meters / 1000).toFixed(2)}`);
  3. }
Advertisement
Add Comment
Please, Sign In to add comment