8000 Update README.md · gitwinst/javascript-exercises@c9ad976 · GitHub
[go: up one dir, main page]

Skip to content

Commit c9ad976

Browse files
committed
Update README.md
1 parent c77daf3 commit c9ad976

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

10_fibonacci/README.md

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,8 @@
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. In this exercise, the series starts from 1, 1, 2, 3, 5, 8... but it can also start from 0, 1, 1, 2, 3, 5...
6+
> To learn more about Fibonacci sequences, go to: https://en.wikipedia.org/wiki/Fibonacci_sequence
67
78
```javascript
89
fibonacci(4); // returns the 4th member of the series: 3 (1, 1, 2, 3)

0 commit comments

Comments
 (0)
0