async function sequential() { const user = await fetchUser(1); // Attend... const posts = await fetchPosts(1); // Puis attend... const comments = await fetchComments(1); // Puis attend... // Temps total = temps1 + temps2 + temps3 }