Explain Generator function in ES6?

devquora
devquora

Posted On: Feb 22, 2018

 

Generators are functions that can be exited and later re-entered. Their context (variable bindings) will be saved across re-entrances. A function keyword followed by an asterisk defines a generator function, which returns a Generator object.

Generator Function Example.

function* generator(i) {
  yield i;
  yield i + 10;
}

var gen = generator(10);

console.log(gen.next().value);
// expected output: 10

console.log(gen.next().value);

Further reading: https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Statements/function*

    Related Questions

    Please Login or Register to leave a response.

    Related Questions

    ES6 Interview Questions

    What is ES6?

    Es6 or ECMASCRIPT 2015 is sixth major release of ECMAScript language which comes with a lot of new features and syntax..

    ES6 Interview Questions

    List some new features of ES6

    New Features in ES6. Support for constants (also known as “immutable variables”) Block-Scope support for both varia..

    ES6 Interview Questions

    What is Babel?

    Babel is one of the most popular JavaScript transpilers and becomes the industry standard. It allows us to write ES6 cod..