Week 9 2 Get Options
001window.onload = ()=>{ 002 //gets first select 003 const theSelectElement = document.querySelector('select'); 004 theSelectElement.onchange = function(){ 005 const selectedValue = theSelectElement.options[theSelectElement.selectedIndex].value; 006 console.log(selectedValue); 007 } 008}