noun

13 of 78
Bad / Strange

nerd - A person who lacks social skills but often makes up for it with technical ability

Kevin was such a nerd that he couldn't even consider asking any girl out for a date.

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