We can execute generators from generators, and delegate the iteration control with the yield* keyword.
Yo dawg, I heard you like generators, so I put generators inside your generators.
Can you help me understand how 3 was consoled out when we returned only 4?
Because of the
yield 3
line in create3To4Counter()
When in the world would we ever use this?