JSFiddle - React, Tailwind, and code Playground
by lollero
HTML
<textarea name="" id="" cols="30" rows="10"></textarea>
JavaScript
var j = [];
var n = 285;
jsooon(n);
function jsooon(n) {
if ( n !== 0 ) {
n = n - 1;
$.getJSON("https://api.guildwars2.com/v2/items?page=" + n + "&page_size=200", function(data) {
j.concat( data );
console.log( "-" + (n + 1) + "-Done!" )
jsooon(n);
});
}
else {
alert( "--- ALL DONE!?" );
textarea.html( JSON.stringify(j) );
}
};