JavaScript Map keys() Method

Getting a new iterator object containing keys from the Map (keys method)

Now, we are going to have another method, through which, we get a new iterator object, which contains the keys for each element in the map, in their original insertion order. In short, we are going to get an iterator object, which contains the keys from the given map, in their insertion order.

JavaScript Map keys() Method

Now, let’s have a look at an example program, through which, we get an idea about the keys method. –

If we try to have a look at the output of the above program, it comes out to be something like this –


As you can see, we got an iterator object containing all the keys for the map. Whenever you want to get the keys from the map, you can make use of the keys method. We can use this method as and when required.