Minor statement change
This commit is contained in:
parent
c116813f9b
commit
b93cf9d4fe
1 changed files with 2 additions and 2 deletions
|
@ -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).
|
||||||
|
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue