adjective

25 of 60
Bad / Strange

inscrutable - Difficult to understand

Martha always had an inscrutable smile, and Joe could never figure out if she loved or even liked him or not.

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