-4
How do I keep the code running the same way by taking out "break" after "if"?: var numeroTentativa = 1;
while (numeroTentativa > 0) {
var chute = parseInt(prompt('Digite o número pensado:'));
var numeroPensado = Math.round(Math.random()*10);
if (chute === numeroPensado) {
alert('Parábens, eu pensei exatamento no número ' + numeroPensado + '.');
break;
} else if (numeroPensado < chute){
alert('Você digitou um número maior em relação ao que eu pensei, continue tentando.');
} else if (numeroPensado > chute) {
alert ('Você digitou um número menor em relação ao que eu pensei, continue tentando.');
}
numeroTentativa++;
alert('Eu pensei no número: ' + numeroPensado);
}
It depends! What should the code do? And what is it doing now? What is the real problem with owning the
break
which justifies you wanting to remove it?– Woss