C-Sharp | Java | Python | Swift | GO | WPF | Ruby | Scala | F# | JavaScript | SQL | PHP | Angular | HTML
JavaScript Map entries() methodThe JavaScript map entries() method returns an object of new map iterator. This object contains the key-value pair for each element. It maintains insertion order. SyntaxThe entries() method is represented by the following syntax: mapObj.entries() Return ValueA new object of map iterator. JavaScript Map entries() method exampleHere, we will understand entries() method through various examples. Example 1Let's see a simple example of entries() method. <script> var map=new Map(); map.set(1,"jQuery"); map.set(2,"AngularJS"); map.set(3,"Bootstrap"); var itr=map.entries(); document.writeln(itr.next().value+"<br>"); document.writeln(itr.next().value+"<br>"); document.writeln(itr.next().value); </script> Output: 1,jQuery 2,AngularJS 3,Bootstrap Example 2Let's see the same example using for loop. <script> var map=new Map(); map.set(1,"jQuery"); map.set(2,"AngularJS"); map.set(3,"Bootstrap"); var itr=map.entries(); for(i=0;i<map.size;i++) { document.writeln(itr.next().value+"<br>"); } </script> Output: 1,jQuery 2,AngularJS 3,Bootstrap
Next TopicJavaScript Math
|