Age Calculator
Your age will appear here.
function calculateAge(){
let dob=document.getElementById("dob").value;
if(dob==""){ alert("Please select Date of Birth"); return; }
let birth=new Date(dob);
let today=new Date();
let years=today.getFullYear()-birth.getFullYear(); let months=today.getMonth()-birth.getMonth(); let days=today.getDate()-birth.getDate();
if(days<0){
months--;
let lastMonth=new Date(today.getFullYear(),today.getMonth(),0);
days+=lastMonth.getDate();
}
if(months<0){
years--;
months+=12;
}
document.getElementById("result").innerHTML=
"Years : "+years+"
"+
"Months : "+months+"
"+
"Days : "+days;
}