JSFiddle - React, Tailwind, and code Playground
by lollero
HTML
<textarea name="" id="" cols="30" rows="10"></textarea>
JavaScript
for ( var i =1; i <= 285; i++ ) {
setTimeout( function() {
$.getJSON( "https://api.guildwars2.com/v2/items?page="+ i +"&page_size=200", function( data ) {
$('textarea').html( $('textarea').html() + JSON.stringify(data) );
});
}, 2000);
}