Advertisement
Guest User

Untitled

a guest
Feb 11th, 2016
56
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.40 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 n=1;
  12. while (n <= 15)
  13. {
  14. console.log(n);
  15. n = n+1;
  16. }
  17. </script>
  18.  
  19.  
  20.  
  21. <script id="jsbin-source-javascript" type="text/javascript">var n=1;
  22. while (n <= 15)
  23. {
  24. console.log(n);
  25. n = n+1;
  26. }
  27. </script></body>
  28. </html>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement