Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 2 additions & 0 deletions foundations/14_fibonacci/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -8,3 +8,5 @@ In this exercise, the Fibonacci sequence used is 1, 1, 2, 3, 5, 8, etc. (i.e. st
fibonacci(4); // returns the 4th member of the series: 3 (1, 1, 2, 3)
fibonacci(6); // returns 8
```

If given a negative number, the function should return `"OOPS"`.