async function parallel() { // Lance les 3 requêtes en même temps const [user, posts, comments] = await Promise.all([ fetchUser(1), fetchPosts(1), fetchComments(1) ]); // Temps total = max(temps1, temps2, temps3) }