Skip to content

Commit dd9a830

Browse files
authored
Merge pull request #383 from RushilJalal/fix_Fibonacci_README
10_fibonacci: Update README.md
2 parents cdba6da + 43a8b16 commit dd9a830

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

10_fibonacci/README.md

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,9 @@
22

33
Create a function that returns a specific member of the Fibonacci sequence:
44

5-
> A series of numbers in which each number ( Fibonacci number ) is the sum of the two preceding numbers. The simplest is the series 0, 1, 1, 2, 3, 5, 8, etc.
5+
> A series of numbers in which each number ( Fibonacci number ) is the sum of the two preceding numbers.
6+
> In this exercise, the Fibonacci sequence used is 1, 1, 2, 3, 5, 8, etc.
7+
> To learn more about Fibonacci sequences, go to: https://en.wikipedia.org/wiki/Fibonacci_sequence
68
79
```javascript
810
fibonacci(4); // returns the 4th member of the series: 3 (1, 1, 2, 3)

0 commit comments

Comments
 (0)