Skip to content

Instantly share code, notes, and snippets.

@mohitesachin217
Last active August 16, 2016 12:35
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save mohitesachin217/06d1cd48c5958908eaeedb29f34eee61 to your computer and use it in GitHub Desktop.
Save mohitesachin217/06d1cd48c5958908eaeedb29f34eee61 to your computer and use it in GitHub Desktop.
get age from date of birth javascript code
function getAge(birth) {
ageMS = Date.parse(Date()) - Date.parse(birth);
age = new Date();
age.setTime(ageMS);
ageYear = age.getFullYear() - 1970;
return ageYear;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment