1
I have the following code :
function calculaDiasDeVida(idade) {
var dias = idade * 365;
};
function calculaBatimentos(dias){
var batimentos = dias * 24 * 60 * 80;
};
idade = parseInt(prompt(nome + ", agora, quantos anos você tem ?"));
var dias = calculaDiasDeVida(idade);
var batimentos = calculaBatimentos(dias);
document.write("<br> Você já viveu " + dias + " dias ao longo de sua vida, e seu coração bateu cerca de " + batimentos + " vezes");
In this case, when performing the account, the values 'days' and 'beats' are given as undefined
, I would like to know, how to correct the error, and why it is occurring
so I give a re-turn in days and beats ?
– Murilo Melo
@Murilogambôa yes, replace the functions as example above
– Sorack