Code
Hub
Workspaces
Following
Trending
Connect
MCP
copy
Create free account
hub
/
github.com/appacademy/Module-1-Resources
/ recursiveFunc
Function
recursiveFunc
w3/d1/lecture.js:47–56 ·
view source on GitHub ↗
(num)
Source
from the content-addressed store, hash-verified
45
46
47
function
recursiveFunc(num) {
48
49
debugger;
50
if
(num === 0)
return
;
51
52
debugger;
53
console.log(num);
54
55
return
recursiveFunc(num - 1)
56
}
57
58
59
recursiveFunc(5);
Callers
1
lecture.js
File · 0.70
Calls
no outgoing calls
Tested by
no test coverage detected