var strB = ["a","b","c","d","e","f","g"];
var strA = ["a","b","c","d","e","f","g","h","i","j","k","l"];
var i=0;
var j=0;
var strNew[];
for (i=0;i<= count(strA);i++){
strNew[]=getStr(i,j);
}
}
function getStr(i,j){
if(i === j) {
return i;
}
How do I get the j counter? Is it an inner loop. The problem is to find out if the string b is at the beginning of the stringB?
thanks,