मैप ऑब्जेक्ट का डिलीट () फ़ंक्शन मैप के एक तत्व की कुंजी का प्रतिनिधित्व करने वाली एक स्ट्रिंग को स्वीकार करता है और वर्तमान मैप ऑब्जेक्ट से हटा देता है। यदि निर्दिष्ट कुंजी मानचित्र ऑब्जेक्ट में मौजूद है, तो यह फ़ंक्शन सही है, अन्यथा यह गलत है।
सिंटैक्स
इसका सिंटैक्स इस प्रकार है
mapVar.delete()
उदाहरण
<html> <head> <title>JavaScript Example</title> </head> <body> <script type="text/javascript"> var mapVar = new Map(); mapVar.set('1', 'Java'); mapVar.set('2', 'JavaFX'); mapVar.set('3', 'HBase'); mapVar.set('4', 'Neo4j'); var map = mapVar.delete('4'); document.write("Size of the map object: "+mapVar.size); </script> </body> </html>
आउटपुट
Size of the map object: 3
उदाहरण
<html> <head> <title>JavaScript Example</title> </head> <body> <script type="text/javascript"> var mapVar = new Map(); mapVar.set('1', 'Java'); mapVar.set('2', 'JavaFX'); mapVar.set('3', 'HBase'); mapVar.set('4', 'Neo4j'); var map = mapVar.delete('4'); document.write(map); document.write("<br>"); document.write("Size of the map object: "+mapVar.size); document.write("<br>"); var map = mapVar.delete('5'); document.write(map); document.write("<br>"); document.write("Size of the map object: "+mapVar.size); </script> </body> </html>
आउटपुट
true Size of the map object: 3 false Size of the map object: 3