The function*
keyword can be used to define a generator function inside an expression.
function* [name]([param1[, param2[, ..., paramN]]]) { statements }
name
paramN
statements
A function*
expression is very similar to and has almost the same syntax as a function* statement
. The main difference between a function*
expression and a function*
statement is the function name, which can be omitted in function*
expressions to create anonymous functions. See also the chapter about functions for more information.
The following example defines an unnamed generator function and assigns it to x
. The function yields the square of its argument:
var x = function*(y) { yield y * y; };
Specification | Status | Comment |
---|---|---|
ECMAScript 2015 (6th Edition, ECMA-262) The definition of 'function*' in that specification. | Standard | Initial definition. |
ECMAScript 2017 Draft (ECMA-262) The definition of 'function*' in that specification. | Draft |
Feature | Chrome | Firefox (Gecko) | Internet Explorer | Opera | Safari |
---|---|---|---|---|---|
Basic support | (Yes) | 26.0 (26.0) | ? | ? | 10 |
yield* | (Yes) | 27.0 (27.0) | ? | ? | 10 |
Trailing comma in parameters | ? | 52.0 (52.0) | ? | ? | ? |
Feature | Android | Chrome for Android | Firefox Mobile (Gecko) | IE Mobile | Opera Mobile | Safari Mobile | |
---|---|---|---|---|---|---|---|
Basic support | ? | (Yes) | 26.0 (26.0) | ? | ? | 10 | |
yield* | ? | (Yes) | 27.0 (27.0) | ? | ? | 10 | |
Trailing comma in parameters | ? | ? | 52.0 (52.0) | ? | ? | ? | ? |
function* statement
GeneratorFunction
objectyield
yield*
Function
objectfunction statement
function expression
Functions and function scope
© 2005–2017 Mozilla Developer Network and individual contributors.
Licensed under the Creative Commons Attribution-ShareAlike License v2.5 or later.
https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Operators/function*