Hidden
Resultados
1
preguntas formuladas por
Hidden
¿Alguna diferencia entre await Promise.all() y multiple await?
6
respuestas
392
votos
329.2k
vistas
¿Hay alguna diferencia entre: const [result1, result2] = await Promise.all([task1(), task2()]); y const t1 = task1(); const t2 = task2(); const result1 = await t1; const result2 = await t2;