We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent bfe3d77 commit 0572a93Copy full SHA for 0572a93
1 file changed
1-js/11-async/08-async-await/article.md
@@ -132,7 +132,9 @@ let user = await response.json();
132
console.log(user);
133
```
134
135
-하지만 익명 async 함수로 코드를 감싸면 최상위 레벨 코드에도 `await`를 사용할 수 있습니다.
+모듈을 사용하지 않거나 [오래된 브라우저](https://caniuse.com/mdn-javascript_operators_await_top_level)를 지원해야 한다면, 익명 async 함수로 감싸는 범용적인 방법을 사용할 수 있습니다.
136
+
137
+다음과 같이 말이죠.
138
139
```js
140
(async () => {
0 commit comments