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 trial

JavaScript JavaScript Loops, Arrays and Objects Tracking Multiple Items with Arrays Useful Array Methods

Taylor Council
Taylor Council
4,101 Points

Is 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].

devina christabela
devina christabela
12,526 Points

indexOf 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 or
  • reduce with initial value of [] or
  • map and filter

1 Answer

Steven Parker
Steven Parker
229,732 Points

I 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, []));