noun

25 of 60
Good / Friendly

candor - The quality of being open and honest in expression; frankness

Joe was a popular politician, because people appreciated his candor, the way he was up front and open about how he felt on all the issues.

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