What is nodeValue property in JavaScript HTML DOM?


The nodeValue property is used to get the node value. You need to specify the node.

Example

You can try to run the following code to learn how to get nodeValue property.

Live Demo

<!DOCTYPE html>
<html>
   <body>
      <p>Get the node value</p>
      <button>Demo Button Text</button>
      <script>
         var val = document.getElementsByTagName("BUTTON")[0];
         var res = val.childNodes[0].nodeValue;
         document.write("<br>Node Value: "+res);
      </script>
   </body>
</html>

Updated on: 22-May-2020

169 Views

Kickstart Your Career

Get certified by completing the course

Get Started
Advertisements