JavaScript | weakMap.has() with Examples
The weakMap.has() is an inbuilt function in JavaScript which is used to return a boolean value which indicates whether an element with a particular key presents in the weakmap object or not.
Syntax:
weakMap.has(key);
Parameters: It accepts a parameter ‘key’ which is the key of the element which is going to be tested for presence in the object weakmap.
Return values: It returns true if the element with the specified key is present in the weakmap object otherwise it returns false.
Code #1:
<script> // Creating a WeakMap() object const weakmap1 = new WeakMap(); // Creating a key "key1" const key1 = {}; // setting element 'gfg' to the key "key1" weakmap1.set(key1, 'gfg'); // Testing whether the key is present // in the weakMap() object or not document.write(weakmap1.has(key1)); </script> |
Output:
true
Code #2:
<script> // Creating a WeakMap() object const weakmap1 = new WeakMap(); // Creating a key "key1" const key1 = {}; // Testing whether the key is present // in the weakMap() object or not document.write(weakmap1.has(key1)); </script> |
Output:
false
Here output is false because the key “key1” has not been set at the end of the weakMap object.
Recommended Posts:
- JavaScript | weakSet.has() with Examples
- JavaScript | console.log() with Examples
- JavaScript | unescape() with examples
- JavaScript | parseFloat() with Examples
- JavaScript | weakSet.add() with Examples
- JavaScript | weakMap.set() with Examples
- JavaScript | parseInt() with Examples
- JavaScript | getPrototypeOf() with Examples
- JavaScript | uneval() with Examples
- JavaScript | typedArray.map() with Examples
- JavaScript | _.reduceRight() with Examples
- JavaScript | typedArray.name with Examples
- JavaScript | typedArray.every() with Examples
- JavaScript | typedArray.of() with Examples
- Javascript | _.reduce() with Examples
If you like GeeksforGeeks and would like to contribute, you can also write an article using contribute.geeksforgeeks.org or mail your article to contribute@geeksforgeeks.org. See your article appearing on the GeeksforGeeks main page and help other Geeks.
Please Improve this article if you find anything incorrect by clicking on the "Improve Article" button below.



