Working with Checkboxes, Radio Buttons, and Dropdowns

What's the difference between 'input' and 'change' events on select elements?
select.addEventListener('input', handleInput);
select.addEventListener('change', handleChange);
Next Question (14/22)