yield Keyword

Syntax

[rv] = yield [expression]

expression Optional

Defines the value to return from the generator function via the iterator protocol. If omitted, undefined is returned instead.

rv Optional

Retrieves the optional value passed to the generator's next() method to resume its execution.