Merge pull request #1802 from Etheraex/master

Minor statement change
This commit is contained in:
Ilya Kantor 2020-03-21 21:13:46 +03:00 committed by GitHub
commit cec58f4278
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -10,9 +10,9 @@ If you're not familiar with these methods, and their usage in the examples is co
Although, we'll try to make things clear anyway. There won't be anything really complex browser-wise.
```
Many actions in JavaScript are *asynchronous*. In other words, we initiate them now, but they finish later.
Many functions are provided by JavaScript host environments that allow you to schedule *asynchronous* actions. In other words, actions that we initiate now, but they finish later.
For instance, we can schedule such actions using `setTimeout`.
For instance, one such function is the `setTimeout` function.
There are other real-world examples of asynchronous actions, e.g. loading scripts and modules (we'll cover them in later chapters).