async function asyncForEach(array, callback) { for (let index = 0; index < array.length; index++) { await callback(array[index], index, array); } } asyncForEach([1, 2, 3], async (num) => { await waitFor(50); console.log(num); })
for (const file of files) { const contents = await fs.readFile(file, 'utf8'); console.log(contents); }
public async Task RunAsync() { var tasks = new List<Task>(); foreach (var x in new[] { 1, 2, 3 }) { var task = DoSomethingAsync(x); tasks.Add(task); } await Task.WhenAll(); }
async function printFiles () { const files = await getFilePaths(); for (const file of files) { const contents = await fs.readFile(file, 'utf8'); console.log(contents); } }
export async function asyncForEach<T>(array: Array<T>, callback: (item: T, index: number) => void) { for (let index = 0; index < array.length; index++) { await callback(array[index], index); } } await asyncForEach(receipts, async (eachItem) => { await ... })