Last active
March 11, 2021 12:46
-
-
Save zlatkov/ab5da4067d7c4d89f38171984d5e9138 to your computer and use it in GitHub Desktop.
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 fibonacciSequenceIterator = makeFibonacciSequenceIterator(5); | |
for (let x of fibonacciSequenceIterator) { | |
console.log(x); | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment