MCPcopy Create free account
hub / github.com/Ibrahim23CS1279/days100 / innerFunction

Function innerFunction

JSday16.js:52–54  ·  view source on GitHub ↗
()

Source from the content-addressed store, hash-verified

50// Nested Functions
51function outerFunction(){
52 function innerFunction(){
53 return "Hello from Inner Function";
54 }
55 return innerFunction();
56}
57console.log(outerFunction()); // Output: Hello from Inner Function

Callers 1

outerFunctionFunction · 0.70

Calls

no outgoing calls

Tested by

no test coverage detected