shuffle
Login

Chatgpt

let data = {};

fetch(‘/wp-content/uploads/anime-data.json?nocache=’ + Date.now())
.then(res => res.json())
.then(json => {
data = json;
render();
});