noun

325 of 903
Good / New

novice - Someone who is beginning to learn a skill or subject

Because Mary was a novice programmer, she often asked her co-workers for help and advice.

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