Multiple choice technology programming languages

innerHTML, innerText, outerHTML and outerText. What are these of Element object

  1. Methods

  2. Properties

  3. Objects

  4. None of The above

Reveal answer Fill a bubble to check yourself
B Correct answer
Explanation

innerHTML, innerText, outerHTML, and outerText are all properties of DOM Element objects in JavaScript, not methods. They are accessed as properties (element.innerHTML = 'content') and return/set values directly without requiring function invocation with parentheses.