Created
November 22, 2018 02:57
-
-
Save harrisonmalone/4e8c525c9d9591e28f3db7b35d557391 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
const signature = [0,0,1] | |
for(x=2; x<10; ++x) { | |
let num = signature[x] + signature[x-1] + signature[x-2] | |
signature.push(num) | |
} | |
console.log(signature) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment