MCPcopy 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
47function 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
59recursiveFunc(5);

Callers 1

lecture.jsFile · 0.70

Calls

no outgoing calls

Tested by

no test coverage detected