Guest User

Untitled

a guest
Mar 20th, 2018
77
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.61 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. setTimeout(function () {
  12. console.log('A');
  13. }, 1000);
  14.  
  15. setTimeout(function () {
  16. console.log('B');
  17. }, 1000);
  18.  
  19. setTimeout(function () {
  20. console.log('C');
  21. }, 1000);
  22. </script>
  23.  
  24.  
  25.  
  26. <script id="jsbin-source-javascript" type="text/javascript">setTimeout(function () {
  27. console.log('A');
  28. }, 1000);
  29.  
  30. setTimeout(function () {
  31. console.log('B');
  32. }, 1000);
  33.  
  34. setTimeout(function () {
  35. console.log('C');
  36. }, 1000);</script></body>
  37. </html>
Add Comment
Please, Sign In to add comment