Advertisement
Onesible

Untitled

Mar 27th, 2025
266
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. function solve() {
  2.     document.getElementById('convert').addEventListener('click', convert);
  3.  
  4.     let conversionMap = {
  5.         'km': n => n * 1000,
  6.         'm': n => n * 1,
  7.         'cm': n => n * 0.01,
  8.         'mm': n => n * 0.001,
  9.         'mi': n => n * 1609.34,
  10.         'yrd': n => n * 0.9144,
  11.         'ft': n => n * 0.3048,
  12.         'in': n => n * 0.0254,
  13.     }
  14.  
  15.     function convert(e) {
  16.         e.preventDefault();
  17.  
  18.         let inputDistance = Number(document.getElementById('inputDistance').value);
  19.         let outputDistance = document.getElementById('outputDistance');
  20.  
  21.         let inputFrom = document.getElementById('inputUnits').value;
  22.         let outputTo = document.getElementById('outputUnits').value;
  23.  
  24.         outputDistance.value = conversionMap[inputFrom](inputDistance) / conversionMap[outputTo](1);
  25.     }
  26. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement