Quantcast
Viewing latest article 12
Browse Latest Browse All 286

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() - birthDate.getMonth();

Viewing latest article 12
Browse Latest Browse All 286

Trending Articles