diff --git a/8-async/01-callback-hell/article.md b/8-async/01-callback-hell/article.md index d66df8c4..c79d0109 100644 --- a/8-async/01-callback-hell/article.md +++ b/8-async/01-callback-hell/article.md @@ -9,40 +9,38 @@ The most obvious example is `setTimeout`, but there are others, like making netw ## Callbacks -Consider a function `loadScript` that loads a script: +Consider this function `loadScript(src)` that loads a script: ```js function loadScript(src) { let script = document.createElement('script'); script.src = src; + document.head.append(script); } ``` -When the `