Сообщество IT-специалистов
Ответы на любые вопросы об IT
Профессиональное развитие в IT
Удаленная работа для IT-специалистов
document.querySelectorAll('select')
selectBoxType = document.querySelectorAll('.form-control');
Uncaught TypeError: Cannot read property 'undefined' of undefined
selectBoxType.forEach(my_lovely_element => { console.log( my_lovely_element ); });
const selectBoxValue = selectBoxType.options[selectBoxType.selectedIndex].value;