BenSyt

Zearn good mission finder

Apr 10th, 2022 (edited)
244
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.33 KB | None | 0 0
  1. window.goodmissions = [];
  2. function fetch2(num){
  3. fetch("https://www.zearn.org/student_home/badge_statuses/" + num + "?format=json").then(function(response){
  4. if(num<150){
  5. if(response.ok){
  6. response.json().then(function(data){window.goodmissions.push([num,data]);});}
  7. fetch2(num+1);
  8. }
  9. });
  10. }
  11. fetch2(0);
Add Comment
Please, Sign In to add comment