content(docs): emphasis on JS promises, JS does not wait!

This commit is contained in:
Dhanush Adithya
2020-07-24 11:23:34 -04:00
committed by Jean-Philippe Sirois
parent eda6adb16e
commit e4df60d22b
@@ -57,7 +57,7 @@ Promises are possibly the #1 most common source of confusion for beginners. In o
to avoid falling in pitfalls yourself, you have to remember 2 things about Javascript when
working with promises.
1. Javascript does not wait.
1. Javascript _does not_ wait.
2. No seriously, Javascript won't wait for your promises!
You may have tried doing something like this before.