Function that returns a value
<html> <head> <script type="text/javascript"> function myFunction(){ return ("Hello!") } </script> </head> <body> <script type="text/javascript"> document.write("return from function") document.write(myFunction()) </script> </body> </html>