Files
joel 0238518822
Build & Deploy NutriApp / build-and-deploy (push) Failing after 7m12s
Frontend WASM compilado + fixes PartialEq + uuid js feature
2026-06-27 02:40:53 +01:00

13 lines
267 B
JavaScript

export function get_select_data(select) {
let values = [];
for (let i = 0; i < select.options.length; i++) {
let option = select.options[i];
if (option.selected) {
values.push(option.value.toString());
}
}
return values;
}