Advertisement
Onesible

Untitled

Mar 27th, 2025
227
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. function solve() {
  2.     let ratios = { days: 1, hours: 24, minutes: 1440, seconds: 86400 };
  3.     let inputs = {
  4.         days: document.getElementById('days-input'),
  5.         hours: document.getElementById('hours-input'),
  6.         minutes: document.getElementById('minutes-input'),
  7.         seconds: document.getElementById('seconds-input')
  8.     };
  9.  
  10.     for (let unit in ratios) {
  11.         document.getElementById(unit + 'Btn').addEventListener('click', (event) => {
  12.             event.preventDefault();
  13.  
  14.             let value = Number(inputs[unit].value);
  15.             if (value < 1) {
  16.                 return;
  17.             }
  18.  
  19.             let inDays = value / ratios[unit];
  20.             for (let u in ratios) {
  21.                 inputs[u].value = (inDays * ratios[u]).toFixed(2);
  22.             }
  23.         });
  24.     }
  25.  
  26.     let clearBtn = document.createElement('input');
  27.     clearBtn.type = 'button';
  28.     clearBtn.value = 'Clear';
  29.     document.getElementsByTagName('main')[0].appendChild(clearBtn);
  30.  
  31.     clearBtn.addEventListener('click', () => {
  32.         for (let input of Object.values(inputs)) {
  33.             input.value = '';
  34.         }
  35.     });
  36. }
  37.  
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement