very interesting, but i have stupid question: when i load a json file with over 1000 records, can i split results and add pagination or load more button?
Yeah, you could do this, in a number of different ways. You could initially only loop over the first 20 or so of the records, then keep a count of which ones you’ve displayed, then add a button to the page that when pressed loops over the next block of 20, etc.