Created
July 8, 2017 17:45
-
-
Save stoora/2affaa640811dc8cb51d0246eda1092c 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
| 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