()
| 49 | |
| 50 | // Nested Functions |
| 51 | function outerFunction(){ |
| 52 | function innerFunction(){ |
| 53 | return "Hello from Inner Function"; |
| 54 | } |
| 55 | return innerFunction(); |
| 56 | } |
| 57 | console.log(outerFunction()); // Output: Hello from Inner Function |
| 58 | // Immediately Invoked Function Expression (IIFE) |
| 59 | (function(){ |
no test coverage detected