Calculate the Age from Date of Birth in JavaScript

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() -...

Continue Reading Gopinath’s Article on their blog

Calculate the Age from Date of Birth in JavaScript

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()…

Blog Syndicated with Gopinath’s Permission

Author: Gopi Nath

Share This Post On
Share via
Copy link
Powered by Social Snap