I'm a beginner in programming and I need help with the function of a button, I do not know how to make that button "read" the old values, the idea of the site is to enter the information to see if the person requires or not retirement
This is a testing function so there is quite a bit missing from this code as the name var
function verificaAposentadoria()
{
var idade = document.getElementById("idade").value;
var trabalho = document.getElementById("trabalho").value;
var resultado = document.getElementById("resultado");
idade = parseInt(idade)
trabalho = parseFloat(trabalho)
resultado = parseInt(resultado)
var saida = "Olá, "+nome+", seu tempo é "+trabalho;
document.getElementById("resultado").innerHTML = saida;
if ("trabalho">=60)
alert ("Você pode se aposentar")
}
</script>