Fetch multipli e relazioni dati
script.js e completa fetchUserAndPosts()BASE_URL/users/{id} e /postsfilter() per relazionare i daticonst user = await fetch(...); const allPosts = await fetch(...); const userPosts = allPosts.filter(post => post.userId === user.id);
Ordina i post dal piΓΉ recente al meno recente usando sort().