Home
<!DOCTYPE html> <html> <body> <h1>Demo: Nested Function</h1> <script> function ShowMessage(firstName) { function SayHello() { alert("Hello " + firstName); } return SayHello(); } ShowMessage("Steve"); </script> </body> </html>
Result: