Last active
December 4, 2023 12:23
-
-
Save jfairbank/8d36e4bde9c16dc0bac7 to your computer and use it in GitHub Desktop.
Fibonacci ES6 Generator
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| function *fibonacci(n) { | |
| const infinite = !n && n !== 0; | |
| let current = 0; | |
| let next = 1; | |
| while (infinite || n--) { | |
| yield current; | |
| [current, next] = [next, current + next]; | |
| } | |
| } |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| function *fibonacci(n = null, current = 0, next = 1) { | |
| if (n === 0) { | |
| return current; | |
| } | |
| let m = n !== null ? n - 1 : null; | |
| yield current; | |
| yield *fibonacci(m, next, current + next); | |
| } |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| let [...first10] = fibonacci(10); | |
| console.log(first10); | |
| // [0, 1, 1, 2, 3, 5, 8, 13, 21, 34] |
var fibonacci_series = function (n)
{
if (n===1)
{
return [0, 1];
}
else
{
var s = fibonacci_series(n - 1);
s.push(s[s.length - 1] + s[s.length - 2]);
return s;
}
};
console.log(fibonacci_series(5));
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
@AgentCoop
I really like your code and I'd like to know if you can explain your thought process on it. My code is a bit different. I would appreciate some advice. Thanks!
function fibonacciGenerator (n) {
var output = [];
if (n === 1) {
output = [0];
}
else if (n === 2) {
output = [0, 1];
}
else {
output = [0,1];
for (var i = 2; i < n;i++) {
output.push(output[output.length - 2] + output[output.length - 1]);
}
}
return output;
}
var output = fibonacciGenerator(10);
console.log(output);