xxxxxxxxxx
const myArray = [1, 2, 3, 4, 5];
// Find the number of elements before a given item
// by simply using the index.
// If the element doesn't exist, -1 will be given which is set to 0
// from the Math.max
const itemCountBefore2 = Math.max(myArray.findIndex(2), 0); // 1