Javascript examples for Function:Function Nest
Call function within the function
<html> <head> <meta name="viewport" content="width=device-width, initial-scale=1"> </head> <body> <button onclick="hello()">click here</button> <script type="text/javascript"> function hai(){//from w ww . ja v a 2 s. c o m console.log("hai fun"); } function hello(){ console.log("hello function"); hai(); } </script> </body> </html>