Skip to content

Instantly share code, notes, and snippets.

@rbren
Created September 21, 2017 16:34
Show Gist options
  • Save rbren/bd1dd900ca93ae48e237a9008d4d92f1 to your computer and use it in GitHub Desktop.
Save rbren/bd1dd900ca93ae48e237a9008d4d92f1 to your computer and use it in GitHub Desktop.
let filenames = ['index.html', 'blog.html', 'terms.html'];
Promise.all(filenames.map(readFilePromise))
.then(files => {
console.log('index:', files[0]);
console.log('blog:', files[1]);
console.log('terms:', files[2]);
})
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment