Answers for "how to find age with day and month and year from date of birth timestamp in javascript"

13

javascript work out age from date of birth

// To calculate age:
var year_born = prompt("Please enter your date of birth:", "Type here");
var d = new Date();
var n = d.getFullYear();
function getAge(birthYear){
	var currentDate = new Date();
    var currentYear = currentDate.getFullYear();
    age = currentYear - birthYear;
    return age;
}
calculatedAge = getAge(year_born);
alert("Hello, " + "you are " + calculatedAge + " years old!");
Posted by: Guest on November-03-2020

Code answers related to "how to find age with day and month and year from date of birth timestamp in javascript"

Code answers related to "Javascript"

Browse Popular Code Answers by Language