Home

Published

- 1 min read

js create element

img of js create element

The solution for this is noted below

js create element

Solution

   let myElm = document.createElement('p') // Create a new element

myElm.innerText = 'test' // Change the text of the element
myElm.style.color = 'red' // Change the text color of the element

document.body.appendChild(myElm) // Add the object to the DOM

Try other methods by searching on the site. That is if this doesn’t work