Skip to content

Instantly share code, notes, and snippets.

@stoora
Created July 8, 2017 17:45
Show Gist options
  • Select an option

  • Save stoora/2affaa640811dc8cb51d0246eda1092c to your computer and use it in GitHub Desktop.

Select an option

Save stoora/2affaa640811dc8cb51d0246eda1092c to your computer and use it in GitHub Desktop.
function trib(n) {
if (n < 3) return n;
var tribo = trib(n-3) + trib(n-2) + trib(n-1);
return tribo;
}
trib(4);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment