Files
PIbd-21_Permyakov_R.G._IP/components/select-helper.js

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);
});
}