Iterating and the Asynchronous Loop
This lesson shows how to iterate with asynchronous loops.
We'll cover the following...
Iteration and the TypeScript generator
TypeScript generators are an advanced and very modern concept. They use the function*
syntax which is the standard function
keyword followed by an asterisk. The star syntax indicates that a function returns a generator object. A function that returns a generator object can return multiple times. This function allows the use of the ...