Skip to content

Instantly share code, notes, and snippets.

@lykkin
Created June 22, 2017 22:36
Show Gist options
  • Save lykkin/50b88d7062773f9ce7920b74002d249f to your computer and use it in GitHub Desktop.
Save lykkin/50b88d7062773f9ce7920b74002d249f to your computer and use it in GitHub Desktop.
eh
new Promise(function(res, rej) {
return Promise.all([
1,
10,
100,
1000
].map(function createPromises(time) {
return new Promise(function(res, rej) {
setTimeout(function() {
console.log('waited ' + time + ' ms!')
res()
}, time)
})
})).then(res)
}).then(function() {
console.log('done!')
})
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment