Created
September 21, 2017 16:34
-
-
Save rbren/bd1dd900ca93ae48e237a9008d4d92f1 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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