Answers for "get age using moment"

5

get age using moment

var a = moment();
var b = moment('{dem_pat_birthyear}', 'YYYY');  
var diff = a.diff(b, 'years'); // calculates patient's age in years
diff; // this prints out the age
//In this calculation {dem_pat_birthyear} 
//needs to be replaced with your variable name for birth year.
Posted by: Guest on October-26-2021

Code answers related to "Javascript"

Browse Popular Code Answers by Language