Skip to content

Instantly share code, notes, and snippets.

@harrisonmalone
Created November 22, 2018 02:57
Show Gist options
  • Save harrisonmalone/4e8c525c9d9591e28f3db7b35d557391 to your computer and use it in GitHub Desktop.
Save harrisonmalone/4e8c525c9d9591e28f3db7b35d557391 to your computer and use it in GitHub Desktop.
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