refactor promise, geneerators, global object

This commit is contained in:
Ilya Kantor 2019-02-28 00:56:39 +03:00
parent be9c5a7b5f
commit 2ee2751216
69 changed files with 900 additions and 643 deletions

View file

@ -0,0 +1,20 @@
# Async iteration and generators
In web-programming, we often need to work with fragmented data that comes piece-by-piece.
That happens when we upload or download a file. Or we need to fetch paginated data.
For
Either we need to download or upload something, or we need
In the previous chapter we saw how `async/await` allows to write asynchronous code.
But they don't solve
Regular iterators work fine with the data that doesn't take time to generate.
A `for..of` loop assumes that we