Use a Generator Like a Closure

InstructorJohn Lindquist

Share this video with your friends

Send Tweet

Generators emulate the behavior of a closure where they wrap an initial value then can take subsequent values through next to yield something based on that initial wrapped value. This lesson walks through creating a closure then re-creating the same behavior with a generator.