You are here: Home / Topics / Convert Age to Days in JavaScript

Convert Age to Days in JavaScript

Filed under: JavaScript on 2023-08-06 20:43:43

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

Examples:

calcAge(65) ➞ 23725

calcAge(0) ➞ 0

calcAge(20) ➞ 7300

 

Notes:

  • Use 365 days as the length of a year for this challenge.
  • Ignore leap years and days between last birthday and now.
  • Expect only positive integer inputs.

 

<script>

function calcAge(year){

return year*365;

}

calcAge(65) //output 23725

calcAge(0) //output 0

calcAge(20) //output 7300

</script>

About Author:
S
Shyam Dubey     View Profile
If you are good in any field. Just share your knowledge with others.