Skip to content

Instantly share code, notes, and snippets.

@kwyn
Created June 14, 2014 15:49
Show Gist options
  • Select an option

  • Save kwyn/cb9092193aa1c8ca113a to your computer and use it in GitHub Desktop.

Select an option

Save kwyn/cb9092193aa1c8ca113a to your computer and use it in GitHub Desktop.
var nthFibonacci = function(n) {
// Your code here
return n < 2 ? n : nthFibonacci(n-1) + nthFibonacci(n-2);
};
var result = nthFibonacci(4)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment