JavaScript Map keys() methodThe JavaScript map keys() method returns an object of new Map iterator. This object contains the key for each element. It maintains insertion order. SyntaxThe keys() method is represented by the following syntax: ReturnA new object of Map iterator. JavaScript Map keys() method exampleHere, we will understand keys() method through various examples. Example 1Let's see a simple example of keys() method. Test it NowOutput: 1 2 3 Example 2Let's see the same example using for loop. Test it NowOutput: 1 2 3 Next TopicJavaScript Math |
We provides tutorials and interview questions of all technology like java tutorial, android, java frameworks
G-13, 2nd Floor, Sec-3, Noida, UP, 201301, India