Guest User

Untitled

a guest
Jun 21st, 2018
73
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.23 KB | None | 0 0
  1. <!DOCTYPE html>
  2. <html>
  3. <head>
  4. <title>Page Title</title>
  5. </head>
  6. <body>
  7. <h1>IIFE example</h1>
  8. </body>
  9. <script>
  10. var foo = 'Hello';
  11. function greet(){
  12. console.log(foo);
  13. }
  14. greet();
  15. </script>
  16. </html>
Add Comment
Please, Sign In to add comment