<html> <head> <title>Example</title> </head> <body> <script type="text/javascript"> function myObj() { alert("hi"); } myObj.alternate = function() { alert("hola"); }; myObj(); myObj.alternate(); </script> </body> </html>