From 13da056653754765b50aa5a9f706f84a4a0d6293 Mon Sep 17 00:00:00 2001 From: Ilya Kantor Date: Tue, 22 Dec 2020 11:41:58 +0300 Subject: [PATCH] closes #2401 --- 1-js/11-async/08-async-await/article.md | 2 ++ 1 file changed, 2 insertions(+) diff --git a/1-js/11-async/08-async-await/article.md b/1-js/11-async/08-async-await/article.md index 176c691e..0687ef2d 100644 --- a/1-js/11-async/08-async-await/article.md +++ b/1-js/11-async/08-async-await/article.md @@ -139,6 +139,8 @@ But we can wrap it into an anonymous async function, like this: ... })(); ``` + +P.S. The notable exception is V8 engine version 8.9+, where top-level await works in [modules](info:modules). ```` ````smart header="`await` accepts \"thenables\""