Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- window.goodmissions = [];
- function fetch2(num){
- fetch("https://www.zearn.org/student_home/badge_statuses/" + num + "?format=json").then(function(response){
- if(num<150){
- if(response.ok){
- response.json().then(function(data){window.goodmissions.push([num,data]);});}
- fetch2(num+1);
- }
- });
- }
- fetch2(0);
Add Comment
Please, Sign In to add comment