Answered step by step
Verified Expert Solution
Question
1 Approved Answer
Given a birthdate in the form mm/dd/yyyy , write a function that returns the person's age and true or false if today is the person's
Given a birthdate in the form mm/dd/yyyy, write a function that returns the person's age and true or false if today is the person's birthday.
For example, since today is 08/30/2013, your function would return the following:
getBirthDate('08/24/1978'); // returns array('age' => 39, 'birthday' => false); getBirthDate('07/21/1997'); // returns array('age' => 21, 'birthday' => true);
function getBirthDate($birthdate) {
}
Step by Step Solution
There are 3 Steps involved in it
Step: 1
Get Instant Access to Expert-Tailored Solutions
See step-by-step solutions with expert insights and AI powered tools for academic success
Step: 2
Step: 3
Ace Your Homework with AI
Get the answers you need in no time with our AI-driven, step-by-step assistance
Get Started