Chidicj's Posts
Nairaland Forum › Chidicj's Profile › Chidicj's Posts
1 (of 1 pages)
is it just me or is anyone else still stuck in the displayUsers function even after hard reload. please help i've done this but still not progressing const displayUsers = (users) => { const sel=document.querySelector('.select-text'); users.forEach(user => { const opt = document.createElement('option'); const text = document.createTextNode(user.name); opt.value = user.id; opt.appendChild(text); sel.appendChild(opt); }); } |
1 (of 1 pages)