Here is my code. But in render function, the age is coming correctly
const newDate = moment().toISOString();
const tempAge = moment(newDate).diff(moment(nextProps.doctor.specificPatient.Dob).toISOString(), 'years');
console.log('const',tempAge);
this.setState({age: tempAge});
console.log('moment',this.state.age);