<!DOCTYPE html>
<html lang="es">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title> Recetas</title>
</head>
<body>
<h1>Recetario</h1>
<script>
let ListarIngredientes = (ingredientes)=>{
document.write("<ol>");
ingredientes.forEach((e)=> document.write("<li>"+e+"</li>"));
document.write("</ol>");
};
let ingredientes = [];
const CANTIDAD = parseInt(prompt("¿Cuántos ingredientes vas a añadir?"));
let acumulador = 0;
while(acumulador<CANTIDAD){
let ingrediente = prompt("Informe el ingrediente:");
let has = ingredientes.includes(ingrediente);
if(!has) {
ingredientes.push(ingrediente);
acumulador++;
}
}
ListarIngredientes(ingredientes);
</script>
</body>
</html>