Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- savedLog = console.log; // they fuck with it
- console.log("top of script");
- console.log("about to start");
- orderId = null;
- function doThingAAA() {
- // alert("loop iteration");
- console.log("AAAAAAAAAAAaaaaaaaaaaaaAAAAAAAAAAAAAAAAA " + Math.random());
- }
- console.log("after function definition");
- doThingAAA();
- console.log("after running function once");
- window.setInterval(doThingAAA, 1000);
- console.log("after setInterval");
Add Comment
Please, Sign In to add comment