8 lines
253 B
JavaScript
8 lines
253 B
JavaScript
export default function populateSelect(select, data) {
|
|
data.forEach((teg) => {
|
|
const option = document.createElement("option");
|
|
option.value = teg.id;
|
|
option.innerText = teg.name;
|
|
select.appendChild(option);
|
|
});
|
|
} |