5. you have imported a library with the birthmonth() function. based on the api, how many strings are…

5. you have imported a library with the birthmonth() function. based on the api, how many strings are inputed to calculate the birth month?\n// calculate birth month based on the day of the month, day of the week, and the birth year\n// daymonth {number} - a day of a month from 1 to 31\n// dayweek {string} - the name of the day of the week\n// year {number} - the birth year\n// return {string} - the month you were born\nbirthdaylibrary.birthmonth(daymonth, dayweek, year);\na. 1\nb. 4\nc. 0\nd. 3
Answer
Brief Explanations:
Review the API parameter types: dayMonth is a number, dayWeek is a string, year is a number. Count the string-type input parameters.
Answer:
A. 1