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 与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…