Welcome to OStack Knowledge Sharing Community for programmer and developer-Open, Learning and Share
Welcome To Ask or Share your Answers For Others

Categories

0 votes
438 views
in Technique[技术] by (71.8m points)

ecmascript 6 - How do you get the key at specifc index in javascript map object?

Suppose I have the following map object

const items = new Map([['item1','A'], ['item2','B'], ['item3', 'C']])

I want to fetch the key at index 2. Is there a way other than using a for loop to get the key of item at index = 2 ?

Got this working as per the answer -

Array.from(items.keys())[2]
See Question&Answers more detail:os

与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
Welcome To Ask or Share your Answers For Others

1 Answer

0 votes
by (71.8m points)

To fetch the key at index 2, do the following:

// Your map
var items = new Map([['item1','A'], ['item2','B'], ['item3', 'C']]);

// The key at index 2
var key = Array.from(items.keys())[2];                 // Returns 'item3'

// The value of the item at index 2
var val1 = items.get(key);                             // Returns 'C'


// ... or ...
var val2 = items.get(Array.from(items.keys())[2]);     // Returns 'C'

与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
Welcome to OStack Knowledge Sharing Community for programmer and developer-Open, Learning and Share
Click Here to Ask a Question

...