From 77d8c7373f31fd10e98f43abd7939366dbeb9cd2 Mon Sep 17 00:00:00 2001 From: Ilya Kantor Date: Sat, 18 Jun 2022 22:06:38 +0300 Subject: [PATCH] closes #3059 --- 1-js/11-async/01-callbacks/article.md | 2 ++ 1 file changed, 2 insertions(+) diff --git a/1-js/11-async/01-callbacks/article.md b/1-js/11-async/01-callbacks/article.md index 74cf1845..57115a90 100644 --- a/1-js/11-async/01-callbacks/article.md +++ b/1-js/11-async/01-callbacks/article.md @@ -77,6 +77,8 @@ function loadScript(src, *!*callback*/!*) { } ``` +The `onload` event is described in the article , it basically executes a function after the script is loaded and executed. + Now if we want to call new functions from the script, we should write that in the callback: ```js