Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I heard about a "yield" keyword in javascript, but i found very poor documentation about it. Can someone explain me (or recommend a site that explains) its usage and what it is used for?

share|improve this question
He probably means 'Yield' bytes.com/topic/python/answers/685510-yield-keyword-usage – ant Feb 17 '10 at 15:58
Yeah but in JS not phyton – mck89 Feb 17 '10 at 16:00
1  
it's explained in MDN, but I think this only works for firefox, right? How portable is it? Any way to to this on Chrome or node.js? PD: sorry, it's Javascript v1.7+, so that's the property to look at when looking for support. – Trylks Oct 12 '12 at 15:48

3 Answers

up vote 35 down vote accepted

The MDN documentation is pretty good, IMO.

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. Each step's value is the value specified by the yield keyword. Think of yield as the generator-iterator version of return, indicating the boundary between each iteration of the algorithm. Each time you call next(), the generator code resumes from the statement following the yield.

share|improve this answer

It's used for iterator-generators. Basically, it allows you to you to make a (potentially infinite) sequence using procedural code. See Mozilla's documentation.

share|improve this answer

Basically it's same as yield in C#. :-)

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.