Buenas, como podria hacer para imprimir el code en la pag asi los ingredientes no se ven solo en la consola? Falto un poco de explicación en esta parte 2 del curso.
Ni siquiera me salta el alert q puse, ayuda.
<meta charset="UTF-8">
<h1>Recetas de Armando</h1>
<script>
function saltarLinea () {
document.write ("<br>")
document.write ("<br>")
document.write ("<br>")
}
function imprimir (frase) {
document.write(frase);
saltarLinea();
}
let ingredientes = [];
let cantidad = parseInt(prompt("¿Cuántos ingredientes vas a añadir?"));
let contador = 1;
while( contador <= cantidad) {
let ingrediente = prompt("Informe el ingrediente " + contador);
let existe = false;
for(let posicion=0; posicion < ingredientes.lenght; posicion++ ) {
if (ingredienteS[posicion] == ingrediente) {
existe = true;
alert("Ingrediente Repetido: " + ingrediente);
break;
}
}
if (existe == false) {
ingredientes.push(ingrediente);
contador++;
}
}
console.log(ingredientes);
</script>