Closed
Description
Not an issue - more of a suggestion. Would be good to return an array for the fibonacci sequence, as well as the sequence at nth position (and maybe rename the nth-position fibonacciNth()
or something). For example:
export default function fibonacci(steps) {
const fibSequence = [];
let currentValue = 1;
let previousValue = 0;
if(steps === 1) {
return [1];
}
while(steps--) {
currentValue += previousValue;
previousValue = (currentValue - previousValue);
fibSequence.push(currentValue);
}
return fibSequence;
}
And:
export default function fibonacciNth(steps) {
let currentValue = 1;
let previousValue = 0;
if(steps === 1) {
return 1;
}
while(steps--) {
currentValue += previousValue;
previousValue = (currentValue - previousValue);
}
return currentValue;
}
Also, where before there was a:
while(iterationsCounter) {
// Do code
iterationsCounter -= 1;
}
This is mildly verbose, and can be more succinctly written without detriment to legibility as:
while(iterationsCounter--) {
// Do code
}
Personally I think that's more readable. Happy to do a PR?
Edit: camel cased variable names to match existing code