diff --git a/javascript/resolve-and-pass-multiple-values-from-a-then.md b/javascript/resolve-and-pass-multiple-values-from-a-then.md index 84669ba..7b0a5dc 100644 --- a/javascript/resolve-and-pass-multiple-values-from-a-then.md +++ b/javascript/resolve-and-pass-multiple-values-from-a-then.md @@ -37,3 +37,5 @@ fetchTrainer(trainerName) `Promise.all` allows us to resolve and pass multiple promises. If any of the values in the array argument is not a promise, it simply passes it through. + +h/t Brian Dunn