Ahmed
Ahmed

Reputation: 581

Javascript: How to get values of an array at certain index positions

I have an array of values

arr = ["a","b","c","d"]

and I have another array of indexes

indexes = [0,2]

What is the best way to get the values of the array at these indexes ?

If I apply the method to the values above

it should return

["a","c"]

Upvotes: 1

Views: 1975

Answers (1)

Spectric
Spectric

Reputation: 31992

Use Array.map:

arr = ["a","b","c","d"]

indexes = [0,2]

const res = indexes.map(e => arr[e])

console.log(res)

Upvotes: 2

Related Questions