Guest User

Untitled

a guest
Jan 18th, 2018
89
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.53 KB | None | 0 0
  1. <!DOCTYPE html>
  2. <html>
  3. <head>
  4. <meta charset="utf-8">
  5. <meta name="viewport" content="width=device-width">
  6. <title>JS Bin</title>
  7. </head>
  8. <body>
  9.  
  10. <script id="jsbin-javascript">
  11. var total = 0;
  12. var scorePoint = function () {
  13.  
  14. total += 1;
  15. console.log(total);
  16. };
  17.  
  18. scorePoint();
  19. scorePoint();
  20. scorePoint();
  21. </script>
  22.  
  23.  
  24.  
  25. <script id="jsbin-source-javascript" type="text/javascript">var total = 0;
  26. var scorePoint = function () {
  27.  
  28. total += 1;
  29. console.log(total);
  30. };
  31.  
  32. scorePoint();
  33. scorePoint();
  34. scorePoint();</script></body>
  35. </html>
Add Comment
Please, Sign In to add comment