List of questions
Related questions
Question 35 - Certified JavaScript Developer I discussion
A developer writers the code below to calculate the factorial of a given number.
Function factorial(number) {
Return number + factorial(number -1);
} factorial(3); What is the result of executing line 04?
A.
0
B.
6
C.
-Infinity
D.
RuntimeError
Your answer:
0 comments
Sorted by
Leave a comment first