adjective

25 of 60
Good / Energy

marathon - Referring to an activity that takes a long time and a great deal of effort

After the company's computers crashed, 30 programmers worked together in a 15 hour marathon debugging session to get the computers up and running again.

// Auto-focus search input when modal opens var searchModal = document.getElementById('searchModal'); if (searchModal) { searchModal.addEventListener('shown.bs.modal', function () { var inp = searchModal.querySelector('input[name=search]'); if (inp) inp.focus(); }); }