Skip to content

Latest commit

 

History

History
20 lines (13 loc) · 357 Bytes

File metadata and controls

20 lines (13 loc) · 357 Bytes

Convert Age to Days

Create a function that takes the age in years and returns the age in days.


Examples:

ageToDays(65) ➞ 23725
ageToDays(0) ➞ 0
ageToDays(20) ➞ 7300

Solution: