JavaScript Quiz
1.What is the difference between innerHTML and textContent?
innerHTML includes the HTML tags, while textContent does not.
innerHTML can be used to modify the DOM, while textContent cannot.
innerHTML is a global property, while textContent is a custom property.
All of the above
Next