MCPcopy Index your code
hub / github.com/learning-zone/nodejs-basics / recursive

Function recursive

nodejs-basics/timmer.js:14–17  ·  view source on GitHub ↗
()

Source from the content-addressed store, hash-verified

12
13// Example: setTimeout()
14var recursive = function () {
15 //console.log("Hey! 1000 millisecond completed!..");
16 setTimeout(recursive, 1000);
17}
18recursive();
19
20

Callers 1

timmer.jsFile · 0.85

Calls

no outgoing calls

Tested by

no test coverage detected