Run ❯
Get your
own
website
Result Size:
625 x 565
×
Change Orientation
Save Code
Change Theme, Dark/Light
Go to Spaces
<!DOCTYPE html> <html> <body> <h1>The Element Object</h1> <h2>The nodeName Property</h2> <p>The node name of the "demo" element is:</p> <p id="demo"></p> <script> let text = document.getElementById("demo").nodeName; document.getElementById("demo").innerHTML = text; </script> </body> </html>