AlexDomson,
расчет возраста
возраст, количество полных лет на текущее время
function yearsOld(c, b) {
var a = new Date;
a.setTime(Date.parse(c));
var d = a.getFullYear(),
e = a.getMonth(),
f = a.getDate();
b ? a.setTime(Date.parse(b)) : a = new Date;
return a.getFullYear() - d - (0 > (a.getMonth() - e || a.getDate() - f))
};
alert(yearsOld('1955-04-24T05:00:00.000Z'));