Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- function httpGet(num)
- {
- var xmlHttp = null;
- xmlHttp = new XMLHttpRequest();
- xmlHttp.open( "GET", "https://btcjam.com/users/"+ num +"/follow", false );
- xmlHttp.send( null );
- console.log("Followed id " +num);
- httpGet(num+1);
- }
- httpGet(1);
Advertisement
Add Comment
Please, Sign In to add comment