Created
October 11, 2017 16:37
-
-
Save slugbyte/339793e51d4f05a230d3a40b9be0b212 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 fib = (x) => (x === 0 || x === 1) ? x : fib(x - 1) + fib(x - 2) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment