verb

1 of 28
Good / New

refurbish - To renovate and redecorate something; to restore something to its original or better condition and appearance.

After finding the used piece of furniture, Joel refurbished it so that it looked brand new.

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