Guest User

Untitled

a guest
May 21st, 2023
31
0
13 days
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.46 KB | None | 0 0
  1.  
  2. savedLog = console.log; // they fuck with it
  3. console.log("top of script");
  4.  
  5.  
  6. console.log("about to start");
  7.  
  8. orderId = null;
  9.  
  10. function doThingAAA() {
  11. // alert("loop iteration");
  12. console.log("AAAAAAAAAAAaaaaaaaaaaaaAAAAAAAAAAAAAAAAA " + Math.random());
  13. }
  14.  
  15. console.log("after function definition");
  16.  
  17. doThingAAA();
  18. console.log("after running function once");
  19.  
  20. window.setInterval(doThingAAA, 1000);
  21.  
  22. console.log("after setInterval");
  23.  
  24.  
  25.  
  26.  
  27.  
  28.  
  29.  
  30.  
  31.  
Add Comment
Please, Sign In to add comment