How can I calculate Birthdate from given age using javascript.
example:
I am entering my age as 23 years 1 month 26 days.
then I need to get birthdate as 1995-05-30.
how this can be done.
How can I calculate Birthdate from given age using javascript.
example:
I am entering my age as 23 years 1 month 26 days.
then I need to get birthdate as 1995-05-30.
how this can be done.
If you are working with dates, I recommend using moment library:
Using moment you can easily subtract intervals from dates. For example:
moment().subtract(10, 'days')
In your case:
var bDay = moment().subtract(23, 'years');
bDay.subtract(1, 'months');
bDay.subtract(26, 'days');