I want to write an algorithm, in JAVASCRIPT, that reads an N numbers and adds only the even numbers
var n1, n2, n3, soma;
n1 = parseInt(prompt("Digite o 1º Número :"));
n2 = parseInt(prompt("Digite o 2º Número :"));
n3 = parseInt(prompt("Digite o 1º Número :"));
document.write("Seus Números Digitados foram: " + n1 + " , " + n2 + " , " + n3 + "<br>");
if ((n1 % 2 && n2 % 2) == 0) {
if ((n3 % 2) == 0) {
soma = n1 + n2 + n3;
document.write("Resultado é: " + soma);
}
} else if ((n2 % 2 && n3 % 2) == 0) {
soma = n2 + n3;
document.write("Resultado é: " + soma);
} else if ((n3 % 2) == 0) {
soma = n3;
document.write("Resultado é: " + soma);
} else {
document.write("ERRO");
}
}