Return Function In javaScript

  1. <html>  
  2.   
  3. <head>  
  4.     <script type="text/javascript">  
  5.         function myFunction() {  
  6.             return ("Hello");  
  7.         }  
  8.     </script>  
  9. </head>  
  10.   
  11. <body>  
  12.     <script type="text/javascript">  
  13.         document.write(myFunction())  
  14.     </script>  
  15. </body>  
  16.   
  17. </html>