<meta charset="UTF-8">
<script>
var heroes = ["Superman", "Thor", "Batman", "Mujer Maravilla"];
for( var posicion = 0; posicion < heroes.length; posicion++) {
alert(heroes[posicion]);
</script>
</script>
<meta charset="UTF-8">
<title>Juego Secreto</title>
<input/>
<br>
<button>Verificar si acerto con el secreto</button>
<script>
var secretos = [3,5,7,9,10];
// var secreto =Math.round(Math.random()*10);
var input = document.querySelector("input");
input.focus();
function verificar(){
var encontrado = false;
for(var posicion = 0; posicion < secretos.length; posicion++){
if(parseInt(input.value) == secretos[posicion]){
alert("Usted Acerto");
encontrado = true
break;
}
}
if (encontrado==false){
alert("usted erro");
}
input.value="";
input.focus();
}
var button=document.querySelector("button");
button.onclick=verificar;
</script>
<meta charset="UTF-8">
<h1>Recetas de Armando</h1>
<script>
var ingredientes = [];
var cantidad = parseInt(prompt("¿Cuántos ingredientes vas a añadir?"));
var contador = 1;
while( contador <= cantidad) {
var ingrediente = prompt("Informe el ingrediente " + contador);
var existeIngrediente = false;
for(var i=0; i<ingredientes.length; i++) {
if (ingrediente == ingredientes[i]) {
existeIngrediente = true;
}
}
if (!existeIngrediente) {
ingredientes.push(ingrediente);
contador++;
}
}
console.log(ingredientes);
</script>