नोडवैल्यू प्रॉपर्टी का उपयोग नोड वैल्यू प्राप्त करने के लिए किया जाता है। आपको नोड निर्दिष्ट करने की आवश्यकता है।
उदाहरण
नोडवैल्यू प्रॉपर्टी कैसे प्राप्त करें, यह जानने के लिए आप निम्न कोड को चलाने का प्रयास कर सकते हैं।
<!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>