Minor statement change

This commit is contained in:
Etheraex 2020-03-14 20:59:49 +01:00
parent c116813f9b
commit b93cf9d4fe

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. 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). There are other real-world examples of asynchronous actions, e.g. loading scripts and modules (we'll cover them in later chapters).