Skip to content

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

https://staturestack.com/2020/09/19/calculate-the-age-from-date-of-birth-in-javascript/

Blog Syndicated with Gopinath’s Permission

Leave a Reply