Advertisement
Guest User

Untitled

a guest
Jun 18th, 2019
83
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.42 KB | None | 0 0
  1. <script>
  2. setTimeout(function() { alert('setTimeout-1') }, 0);
  3. setTimeout(function() { alert('setTimeout-2') }, 0);
  4. setTimeout(function() { alert('setTimeout-3') }, 0);
  5. </script>
  6. <p>paragraph-1</p>
  7. <script>
  8. alert('one');
  9. </script>
  10. <p>paragraph-2</p>
  11. <script>
  12. alert('two');
  13. </script>
  14. <p>paragraph-3</p>
  15. <script>
  16. alert('three');
  17. </script>
  18. <p>paragraph-4</p>
  19. <script>
  20. alert('four');
  21. </script>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement