function oneOf(value,arryList){ for(let i=0;i<arryList.length;i++){ if(value=arryList[i]){ return true } }return false}