From d5f9f52381c342b94e32d63cb350a287c79ecdf8 Mon Sep 17 00:00:00 2001 From: jbranchaud Date: Fri, 20 Apr 2018 13:38:30 -0500 Subject: [PATCH] Add a mention to the latest til --- javascript/resolve-and-pass-multiple-values-from-a-then.md | 2 ++ 1 file changed, 2 insertions(+) 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