Get your own website Result Size: 625 x 565
x
 
<!DOCTYPE html>
<html>
<body>
<h1>The NodeList Object</h1>
<h2>The item() Method</h2>
<p>I am one.</p>
<p>I am two.</p>
<p>I am three.</p>
<p>The HTML content of the first p element in this document is:</p>
<p id="demo"></p>
<script>
const list = document.getElementsByTagName("p");
let text = list.item(0).innerHTML;
document.getElementById("demo").innerHTML = text;
</script>
</body>
</html>