“JavaScript Agregar texto a Li” Código de respuesta

JS agregue más texto al elemento

document.getElementById("p").textContent += " This is the text from javascript.";

<p id ="p">This is the text from HTML.</p>
Prophitis

JavaScript Agregar texto a Li

let arr = ["g", "o", "o", "g", "L", "e";
let ul = document.getElementById("id_ul");
let i =0;
arr.map(arr=>{
 var li = document.createElement("li");
 ul.appendChild(li);
 li.innerHTML = arr[i];
})
Xenophobic Xenomorph

Respuestas similares a “JavaScript Agregar texto a Li”

Preguntas similares a “JavaScript Agregar texto a Li”

Más respuestas relacionadas con “JavaScript Agregar texto a Li” en JavaScript

Explore las respuestas de código populares por idioma

Explorar otros lenguajes de código