C-Sharp | Java | Python | Swift | GO | WPF | Ruby | Scala | F# | JavaScript | SQL | PHP | Angular | HTML
JavaScript Map get() methodThe JavaScript map get() method returns the value of specified key of an element from a Map object. SyntaxThe get() method is represented by the following syntax: mapObj.get(key) Parameterkey - The key to be searched. ReturnThe value of specified key. JavaScript Map get() method exampleHere, we will understand get() method through various examples. Example 1Let's see a simple example of get() method. <script> var map=new Map(); map.set(1,"jQuery"); map.set(2,"AngularJS"); map.set(3,"Bootstrap"); document.writeln(map.get(1)+"<br>"); document.writeln(map.get(2)+"<br>"); document.writeln(map.get(3)); </script> Output: jQuery AngularJS Bootstrap Example 2Let's see an example to determine the result when map object doesn?t contain the specified key element. <script> var map=new Map(); map.set(1,"jQuery"); map.set(2,"AngularJS"); map.set(3,"Bootstrap"); document.writeln(map.get(5)); //returns undefined </script> Output: undefined
Next TopicJavaScript Math
|