We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 8373889 commit e424f1dCopy full SHA for e424f1d
1 file changed
2-ui/5-loading/02-script-async-defer/article.md
@@ -177,9 +177,8 @@ loadScript("/article/script-async-defer/long.js");
177
loadScript("/article/script-async-defer/small.js");
178
```
179
180
-Without `script.async=false`, scripts would execute in default, load-first order (the `small.js` probably first).
181
-
182
-Again, as with the `defer`, the order matters if we'd like to load a library and then another script that depends on it.
+`script.async=false`를 지정하지 않으면 스크립트는 기본으로 먼저 로드된 순서대로 실행됩니다(아마 `small.js`가 먼저 실행됩니다.)
+앞서 `defer`에서 살펴본 것처럼 라이브러리를 먼저 로드하고 이를 사용하는 다른 스크립트를 이후에 실행해야 하는 경우에는 실행 순서가 중요합니다.
183
184
185
## 요약
0 commit comments