В каждом обычном браузере дата рассчитывается обычно .. как 38 лет.
На IPad я получаю сообщение об ошибке не числа (NaN) ... но почему?
function getAge(date) {
var today = new Date();
var birthDate = new Date(date);
var age = today.getFullYear() - birthDate.getFullYear();
var m = today.getMonth() - birthDate.getMonth();
if (m < 0 || (m === 0 && today.getDate() < birthDate.getDate())) {
age--;
}
return age;
}
РЕДАКТИРОВАТЬ: NaN @ IPad, IE8 и корректная работа в Firefox & Chrome