devxlogo

Age – Evaluating the age of a person, given his/her birth date

' Evaluate the age of a person, given his/her birth date' Example: Debug.WriteLine(Age(#9/28/1980#))  ' => 22Function Age(ByVal birthDate As Date, Optional ByVal currentDate As Date = #1/1/ _    1900#, Optional ByVal exactAge As Boolean = True) As Integer    If currentDate = #1/1/1900# Then currentDate = Date.Today    Age = currentDate.Year - birthDate.Year    If exactAge Then        ' subtract one if this year's birthday hasn't occurred yet        If New Date(currentDate.Year, birthDate.Month, _            birthDate.Day) > currentDate Then            Age -= 1        End If    End IfEnd Function

Charlie has over a decade of experience in website administration and technology management. As the site admin, he oversees all technical aspects of running a high-traffic online platform, ensuring optimal performance, security, and user experience.

See also  How Seasoned Architects Evaluate New Tech

About Our Editorial Process

At DevX, we’re dedicated to tech entrepreneurship. Our team closely follows industry shifts, new products, AI breakthroughs, technology trends, and funding announcements. Articles undergo thorough editing to ensure accuracy and clarity, reflecting DevX’s style and supporting entrepreneurs in the tech sphere.

See our full editorial policy.