HTML DOM स्टोरेज लेंथ प्रॉपर्टी का उपयोग ब्राउज़र के स्टोरेज ऑब्जेक्ट के अंदर मौजूद आइटम्स की संख्या प्राप्त करने के लिए किया जाता है। स्टोरेज ऑब्जेक्ट लोकलस्टोरेज ऑब्जेक्ट या सेशनस्टोरेज ऑब्जेक्ट हो सकता है।
सिंटैक्स
−
. के लिए वाक्य रचना निम्नलिखित हैलोकलस्टोरेज ऑब्जेक्ट का उपयोग करके स्टोरेज लेंथ प्रॉपर्टी -
localStorage.length;
सेशनस्टोरेज ऑब्जेक्ट का उपयोग कर स्टोरेज लेंथ प्रॉपर्टी
sessionStorage.length;
उदाहरण
आइए हम स्टोरेज लेंथ प्रॉपर्टी के उदाहरण को देखें -
<!DOCTYPE html> <html> <body> <h1 style="text-align:center">Storage length property example</h1> <p>Get how many storage items are stored in the local storage object by clicking the below button</p> <button onclick="itemNum()">GET NUMBER</button> <p id="Sample"></p> <script> function itemNum() { var num = localStorage.length; document.getElementById("Sample").innerHTML = "Number of storage items are "+num; } </script> </body> </html>
आउटपुट
यह निम्नलिखित आउटपुट देगा -
GET NUMBER पर क्लिक करने पर -