<meta charset="utf-8">
<h2> Crear un juego de adivinacion </h2>
<script>
function SaltarLinea(a) {
document.write("<br>");
document.write("<br>");
document.write("<br>");
// body...
}
function Imprimir(palabra) {
document.write(palabra);
SaltarLinea();
// body...
}
var NumeroPensado = 5;
var NumeroPersona = parseInt(prompt("Ingrese el numero"));
if (NumeroPersona == NumeroPensado){
document.write("Adivinaste el numero era el "+ NumeroPensado +" Que habia y este " +NumeroPersona +" Que elegiste");
}else{
document.write("PAILAS PERDISTE ");
}
</script>