I got this as JSON data from the API and need to calculate the age:
{"fullname":"Nikita","email":"test@demo.com","city":"London","mobile":"08888888888","birthday"{"year":1980,"month":7,"day":23}}
Currently, I'm showing the date of birth as {{anon.birthday}}
which results in 1980-7-23
. I would like to show the age instead. How can I go about doing this?