add function to calculate age with yob

This commit is contained in:
Carlosokumu 2024-08-27 14:59:17 +03:00
parent 674fd5773a
commit 2a5f7517f4
Signed by: carlos
GPG Key ID: 7BD6BC8160A5C953

View File

@ -20,3 +20,16 @@ func CalculateAge(birthdate, today time.Time) int {
}
return age
}
// CalculateAgeWithYOB calculates the age based on the given year of birth (YOB).
// It subtracts the YOB from the current year to determine the age.
//
// Parameters:
// yob: The year of birth as an integer.
//
// Returns:
// The calculated age as an integer.
func CalculateAgeWithYOB(yob int) int {
currentYear := time.Now().Year()
return currentYear - yob
}