adjective

25 of 60
Bad / Dishonest

sly - Having or showing a cunning and deceitful nature

Walt was sly in the way that he would promise everything to everyone, without intending to fulfill his promises.

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