I need to create a function that gets three numbers as parameters and returns the largest one. If two or three are the same, it shows the value equal.
I was able to make the comparison, but it is still necessary to show that if it has a repeated value it shows this value.
var n1 = parseFloat(prompt("Digite um número:"));
var n2 = parseFloat(prompt("Digite um número:"));
var n3 = parseFloat(prompt("Digite um número:"));
function maiorDosTres() {
var a = Array.prototype.sort.call(arguments);
alert( "O maior número é: " + a[a.length - 1] + " e o menor é: " + a[0]);
}
maiorDosTres(n1, n2, n3);Q