Introduction to Generator Functions
Introduction to Generators
What are Generators?
Generators are functions that can be paused and resumed. Generators can send out values when pausing and take in values when resuming.
Why are Generators important?
Generators are important because they allow asynchronous functions to written like normal synchronous functions.