Advertisement
Guest User

Untitled

a guest
Dec 1st, 2015
63
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.25 KB | None | 0 0
  1. <html>
  2. <head>
  3. <title>Test</title>
  4. </head>
  5. <body>
  6. <script type="text/javascript">
  7.  
  8. function hello(name, secondName){
  9. console.log("hi " + name + " " + secondName)
  10. }
  11.  
  12. var hello2 = function () {
  13.  
  14. hello('dominic', 'kendrick')
  15.  
  16. }
  17.  
  18.  
  19. hello2()
  20.  
  21. </script>
  22. </body>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement