What's the yield keyword in JavaScript? - Stack Overflow
https://stackoverflow.com/questions/2282140/whats-the-yield-keyword-in-javascript
Jul 28, 2014 · The function containing the yield keyword is a generator. When you call it, its formal parameters are bound to actual arguments, but its body isn't actually evaluated. Instead, a generator-iterator is returned. Each call to the generator-iterator's next () method performs another pass through the iterative algorithm. Reviews: 6
Reviews: 6
DA: 86 PA: 75 MOZ Rank: 59 Up or Down: Up