adjective

25 of 60
Bad / Dangerous

pernicious - Having a harmful effect, especially in a gradual or subtle way.

People used to think that smoking was good for you because it seemed calming, but now we realize that its pernicious effects are deadly over time.

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