adjective

349 of 903
Good / Good

optimum - The best way to acheive the desired result

On his first day at the call center, Bill tried to use an optimum voice, not too fast and not too slow.

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