You have already completed these exercises!
Do you want to take them again?
You completed the JS HTML DOM HTML Exercises from W3Schools.com
Share on:
What is a legal syntax for changing the content of an Element?
let x = document.getElementById('demo')x.content = 'Welcome';
let x = document.getElementById('demo')x.innerHTML = 'Welcome';
let x = document.getElementById('demo')x.changeContent('Welcome');