How can I calculate the age of a person in Javascript from the date of birth?
I tried something like:
function idade(dia, mes, ano) {
return new Date().getFullYear() - ano;
}
idade(11, 12, 1980); // 33
idade(15, 2, 2011); // 2
idade(5...
asked on
11.02.2014 / 07:11