verb

1 of 76
Bad / Small

dwindle - To diminish gradually in size, amount, or strength

The dodo bird population dwindled over time before finally going extinct.

// 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(); }); }