Answers for "why async await not working in foreach"

0

foreach async not working

async function printFiles () {
  const files = await getFilePaths();

  for (const file of files) {
    const contents = await fs.readFile(file, 'utf8');
    console.log(contents);
  }
}
Posted by: Guest on September-30-2020

Code answers related to "Javascript"

Browse Popular Code Answers by Language