From a27b7e23108ae94b0480fd5097070b70cf194354 Mon Sep 17 00:00:00 2001 From: joaquinelio Date: Tue, 12 Jan 2021 08:28:05 -0300 Subject: [PATCH] "exception" vs "new feature" ? --- 1-js/11-async/08-async-await/article.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/1-js/11-async/08-async-await/article.md b/1-js/11-async/08-async-await/article.md index 0687ef2d14..bde7c72eaa 100644 --- a/1-js/11-async/08-async-await/article.md +++ b/1-js/11-async/08-async-await/article.md @@ -140,7 +140,7 @@ 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). +P.S. New feature: starting from V8 engine version 8.9+, top-level await works in [modules](info:modules). ```` ````smart header="`await` accepts \"thenables\""