0
I’m stuck in an exercise where I can’t get free, I’d like to know why you’re returning Nan, I think you’re giving some trouble in the "draw" function, but I’m not seeing which one.
var mostraBR = function(frase){
document.write(frase + "<br/>")
}
var mostraHR = function(frase){
document.write(frase + "<hr/>")
}
var sorteia = function(x){
var n = Math.round(Math.random * x);
return n;
}
var numeroPensado = sorteia(10);
var chute = prompt("Já Pensei. Qual número você acha que é?");
if (chute == numeroPensado) {
mostraHR("Você acertou, pois eu pensei no " + numeroPensado);
} else {
mostraBR("Você errou, eu tinha pensado no " + numeroPensado);
}
if (chute < numeroPensado) {
mostraBR("Número " + chute + " é menor que " + numeroPensado);
} else {
mostraBR("Número " + chute + " é maior que " + numeroPensado);
}
Thank you, it was only at the time of writing Math.Andom that I forgot the parentheses...
– MrVanDaime