Im trying to return indexes from an array, when the characters in the array match search term regardless of the characters order in the array .
array = ['hell on here', '12345', '77788', 'how are you llo']
function charmatch(array,lookFor){
Indexarray = [];
for(I=0; I<array.length;I++){
If (lookFor.charAt(I) <= array.indexOf(I))
Indexarray[Indexarray.length] = I
} return Indexarray;
}
document.write(charmatch(array,"hello") )
So this should return 0,3 in the array. How could this be done?