, (/d) ([xyz]), .
function matchPlus(string, base, plus){
string= string.split(plus);
return string.length== 2 && string.join('')== base;
}
var tA= 'ytest,tyest,teyst,test,ytesty,testyy,tesyt,testy'.split(','), L= 8;
while(L){
tem= tA[--L];
tA[L]= tem+'= '+!!matchPlus(tem,'test','y');
}
alert(testA.join('\n'))