JS obtiene todos los índices de valor en la matriz
// find all indexes in array that match value
let indices = array.map((e, i) => e === value ? i : '').filter(String)
MrStonkus