Skip to content

Instantly share code, notes, and snippets.

@tinkertrain
tinkertrain / fibonacci.js
Last active August 9, 2018 08:58
Even Fibonacci Numbers
/** Class to produce Fibonacci series and actions on them */
class Fibonacci {
/**
* Initialize the arrays to store the Fibonacci series
* complete: All the values that have been calculated across uses
* current: The current list of values
*/
constructor() {
this.series = {
complete: [],