noun

Url

49 of 60
Bad / Mistake

repercussions - The effects or results of an action, event, or decision, especially those that are unintended or negative.

His decision to suddently quit the company without notice had serious repercussions, hurting his reputation and making it hard to find another job.

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