select option multiple values javascript code example
Example 1: get array of selected options from select element
var values = $('#select-meal-type').val();
Example 2: how to get values from select multiple in js
document.getElementById('submit').onclick = function() {
var selected = [];
for (var option of document.getElementById('pets').options) {
if (option.selected) {
selected.push(option.value);
}
}
alert(selected);
}