Code
Hub
Workspaces
Connect
Indexed graphs
Engine
MCP
copy
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()
14
var
recursive =
function
() {
15
//console.log("Hey! 1000 millisecond completed!..");
16
setTimeout(recursive, 1000);
17
}
18
recursive();
19
20
Callers
1
timmer.js
File · 0.85
Calls
no outgoing calls
Tested by
no test coverage detected