generator function
Last updated
Was this helpful?
Last updated
Was this helpful?
โฉ โฉ generator function
defined by function* keyword and returns a Generator object.
use cases
generator function as ... (variable, method)
as make-iterator method of an iterable.
examples
*list() - sequence of numbers
composition of generator functions
yield and operator can only be used within generator functionsโ๏ธ
replit๏ผ
(declaration) โญ๏ธ