Welcome to the Treehouse Community
Want to collaborate on code errors? Have bugs you need feedback on? Looking for an extra set of eyes on your latest project? Get support with fellow developers, designers, and programmers of all backgrounds and skill levels here with the Treehouse Community! While you're at it, check out some resources Treehouse students have shared here.
Looking to learn something new?
Treehouse offers a seven day free trial for new students. Get access to thousands of hours of content and join thousands of Treehouse students and alumni in the community today.
Start your free trialTaylor Council
4,101 PointsIs indexOf a greedy solution for finding an array index?
I am wondering if there is a way to get all the indices in an array. For example when I add an additional apples item in this arr:
var inStock = [ 'apples', 'eggs', 'milk', 'apples']; var search;
console.log(inStock.indexOf('apples'));
The result only shows the first instance of the apples [0].
1 Answer
Steven Parker
231,236 PointsI think you might best achieve what you describe using "reduce" (one of devine's suggestions):
console.log(inStock.reduce((a,c,i) => c=="apples" ? [...a, i] : a, []));
devina christabela
12,526 Pointsdevina christabela
12,526 PointsindexOf
only return the first occurrence from an array.. As far as I know, you need to loop the array and check one by one to find all index array which have same value, you can try with:for
loop and if with array orreduce
with initial value of[]
or