0
I wrote this function in Javascript that compares two numbers and tells me which one is the largest:
function verificarMaiorNumero(x,y){
if (primeiroNumero > segundoNumero){
return primeiroNumero + " é maior";
}else{
return segundoNumero + " é maior";
}
}
var primeiroNumero = prompt("Digite um número: ");
do{
var segundoNumero = prompt("Digite outro número :");
}while (primeiroNumero == segundoNumero);
alert(verificarMaiorNumero(primeiroNumero,segundoNumero));
However, when entering with the values 1000
and 500
, she always returns to me saying that 500 é maior
. Why does this happen? Where is the error in the code?