Hi Everyone,
Today I have got an requirement to calculate the Age based on Date of Birth.
Here is the way to get the Age using JavaScript.
function getAge(dateString) {
// var dateString = '12/02/1988'
var today = new Date();
var birthDate = new Date(dateString);
var age = today.getFullYear() -
birthDate.getFullYear();
var m = today.getMonth() -
birthDate.getMonth();
↧