Skip to content

Instantly share code, notes, and snippets.

@theWhiteFox
Last active July 2, 2017 17:28
Show Gist options
  • Save theWhiteFox/0e0382363fc1a8a4a3ffcca7ccf31b82 to your computer and use it in GitHub Desktop.
Save theWhiteFox/0e0382363fc1a8a4a3ffcca7ccf31b82 to your computer and use it in GitHub Desktop.
"use strict";
// below functions can be accessed from the console
// very basic fibonacci
function basicFib() {
var first = 1,
second = 0,
answer = first + second;
while(answer < 100) {
console.log(answer);
second = first;
first = answer;
answer = first + second;
}
return 0;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment