export function age() { let birthdate = new Date("29 August 2002") let now = new Date() let age = now.getFullYear() - birthdate.getFullYear() if (now.getMonth() < birthdate.getMonth()) age-- if ( birthdate.getMonth() === now.getMonth() && now.getDate() < birthdate.getDate() ) age-- return age }