Alon

Resultados 1 preguntas formuladas por Alon

Utilice async await con Array.map

10
respuestas
541
votos
534.7k
vistas

Dado el siguiente código: var arr = [1,2,3,4,5]; var results: number[] = await arr.map(async (item): Promise<number> => { await callAsynchronousOperation(item); return item + 1; }); lo que produce el siguiente