“Фореш ждет JS” Ответ

Foreach Async TypeScript

  for (const file of files) {
    const contents = await fs.readFile(file, 'utf8');
    console.log(contents);
  }
 
Cruel Chinchilla

Асинхровый Фореш

[1, 2, 3].forEach(async (num) => {  await waitFor(50);  console.log(num);});console.log('Done');
Silly Salmon

Фореш ждет JS

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

  for (const file of files) {
    const contents = await fs.readFile(file, 'utf8');
    console.log(contents);
  }
}
Clumsy Cicada

Ответы похожие на “Фореш ждет JS”

Вопросы похожие на “Фореш ждет JS”

Больше похожих ответов на “Фореш ждет JS” по JavaScript

Смотреть популярные ответы по языку

Смотреть другие языки программирования