while( contador <= cantidad) {
var ingrediente = prompt("Informe el ingrediente " + contador),
verificiacion = false;
for(i = 0; i < contador; i++){
if(ingrediente == ingredientes[i]){
verificiacion = true;
alert("Ya existe el ingrediente");
break;
}
}
if(verificiacion == false){
ingredientes.push(ingrediente);
contador++;
}
}