✅ Перевірена відповідь на це питання доступна нижче. Наші рішення, перевірені спільнотою, допомагають краще зрозуміти матеріал.
Consider the following HTML code
<h3> Exam Format </h3><p id="thetitle">The exam will be multiple choice</p>
and the following JavaScript code which appears below it in a <script> element
element = document.getElementById("thetitle");document.write("<p>"+element.nodeName+"</p>");What text will be written by document.write?