JavaScript - 12
JavaScript - 12: Introduction to the DOM
Select the paragraph with id "output-text" and change its text using document.getElementById().
👀 Show Solution
document.getElementById("output-text").textContent = "Success! JavaScript is now controlling this text 🎉";