1
0
Fork 0
mirror of https://gitlab.com/mfocko/LeetCode.git synced 2024-09-19 17:56:55 +02:00
LeetCode/js/generate-fibonacci-sequence.js

18 lines
261 B
JavaScript
Raw Normal View History

/**
* @return {Generator<number>}
*/
var fibGenerator = function*() {
let a = 0, b = 1;
while (true) {
yield a;
[a, b] = [b, a + b];
}
};
/**
* const gen = fibGenerator();
* gen.next().value; // 0
* gen.next().value; // 1
*/