Cree una funcion para poder agregar text a una lista

This commit is contained in:
2026-05-21 19:26:01 -03:00
parent 868cf5a5fd
commit 8b352de3f3

View File

@@ -13,3 +13,11 @@ const addClass = (className) => {
item.classList.add(className);
});
}
// Ejercicio 3
const agregarItem = (text) =>{
const list = document.querySelector("#lista-inicial");
const newLi = document.createElement("li");
newLi.textContent = text;
list.appendChild(newLi);
}