C-Sharp | Java | Python | Swift | GO | WPF | Ruby | Scala | F# | JavaScript | SQL | PHP | Angular | HTML
JavaScript WeakMap get() methodThe JavaScript WeakMap get() method returns the value of specified key of an element from a WeakMap object. Syntax
The get() method is represented by the following syntax: WeakMapObj.get(key) Parameter
key - The key to be searched. ReturnThe value of the specified key. JavaScript WeakMap get() method example
Here, we will understand get() method through various examples. Example 1Let's see a simple example of get() method.
<script>
var wm = new WeakMap();
var obj1 = {};
var obj2 = {};
var obj3= {};
wm.set(obj1, "jQuery");
wm.set(obj2, "AngularJS");
wm.set(obj3,"Bootstrap");
document.writeln(wm.get(obj1)+"<br>");
document.writeln(wm.get(obj2)+"<br>");
document.writeln(wm.get(obj3));
</script>
Output: jQuery AngularJS Bootstrap Example 2Let's see an example to determine the result when WeakMap object doesn?t contain the key.
<script>
var wm = new WeakMap();
var obj1 = {};
var obj2 = {};
var obj3= {};
wm.set(obj1, "jQuery");
wm.set(obj2, "AngularJS");
wm.set(obj3,"Bootstrap");
document.writeln(wm.get());//returns undefined
</script>
Output: undefined
Next TopicWeakMap has() Method
|