export function getNextAge(age) { return Number.parseInt(age, 10) + 1; }
export function getNextAge(age) { return ++age }