मानचित्र और कमजोर मानचित्र के बीच अंतर
Map और WeakMap का कार्यात्मक तंत्र समान है लेकिन उनमें बहुत कम अंतर हैं।
1) एक कमजोर नक्शा केवल वस्तुओं को कुंजी के रूप में स्वीकार करता है जबकि एक मानचित्र ,ऑब्जेक्ट के अलावा, आदिम डेटाटाइप जैसे स्ट्रिंग्स, नंबर आदि को स्वीकार करता है।
2) कमजोर नक्शा ऑब्जेक्ट कचरा संग्रहण को नहीं रोकता है यदि उस वस्तु का कोई संदर्भ नहीं है जो एक कुंजी की तरह काम कर रही है। इसलिए WeakMap . में कुंजियों को पुनः प्राप्त करने का कोई तरीका नहीं है , जबकि मानचित्र . में कुंजियाँ प्राप्त करने के लिए Map.prototype.keys() जैसी विधियाँ हैं।
3) WeakMap . में कोई आकार की संपत्ति मौजूद नहीं है ।
मानचित्र
इसका उपयोग किसी कुंजी को किसी मान से जोड़ने के लिए किया जाता है, भले ही डेटाटाइप जैसे स्ट्रिंग्स, नंबर, ऑब्जेक्ट इत्यादि।
उदाहरण
<html> <body> <script> // Creates a new Map object var map = new Map(); // Defines an object that will be used a key in the ma var objKey = {name: 'tutorialspoint'}; document.write("</br>"); // Adds a new element having a String as its key and a String as its value map.set('first', 'a'); document.write("</br>"); // Adds a new element having a Number as its key and an Array as its value map.set(3, ['c']); document.write("</br>"); // Adds a new element having an Object as its key and a Number as its value map.set(objKey, 3); // Adds a new element having an Array as its key and a String as its value map.set(['add', 'mapping'], 'd'); // Checks whether an element having a key of "2" exists in the map. document.write(map.has(2)); document.write("</br>"); // Checks whether an element having a key of "first" exists in the map. document.write(map.has('first')); document.write("</br>"); // Retrieves the element having key of "first". Prints "a" document.write(map.get('first')); document.write("</br>"); // Retrieves the element having as a key the value of objKey. document.write(map.get(objKey)); document.write("</br>"); // Retrieves the element having key of "empty". Prints "undefined" document.write(map.get('empty')); document.write("</br>"); // Retrieves the map size. Prints "4" document.write(map.size); document.write("</br>"); // deletes all the value map.clear(); document.write(map.size); </script> </body> </html>
आउटपुट
false true a 3 undefined 4 0
कमजोर नक्शा
नीचे दिए गए उदाहरण में हम पा सकते हैं कि WeakMap केवल वस्तुओं को स्वीकार करता है लेकिन कोई आदिम मान (तार, संख्या) नहीं
उदाहरण
<html> <body> <script> // Creates a new WeakMap object var weakMap = new WeakMap(); // Defines an object that will be used a key in the map var obj4 = {d: 4}; // Defines another object that will be used a key in the map var obj5 = {e: 5}; // Adds a new element having an Object as its key and a String as its value weakMap.set(obj4, 'fourth'); // Adds a new element having an Object as its key and a String as its value weakMap.set(obj5, 'fifth'); // Adds a new element having a Function as its key and a Number as its value weakMap.set(function(){}, 7); // Checks whether an element having as its key the value of objKey4 exists in the weak map. document.write(weakMap.has(obj4)); document.write("</br>"); // Retrieve the value of element associated with the key having the value of objKey4. Prints "first" document.write(weakMap.get(obj4)); document.write("</br>"); // Deletes the element having key of objKey4. Prints "true" document.write(weakMap.delete(obj4)); document.write("</br>"); // Deletes all the elements of the weak map weakMap.clear(); </script> </body> </html>
आउटपुट
true fourth true