In this JavaScript tutorial we are learning about fibonacci series.
fibonacci series
Fibonacci number series are those numbers whose first two numbers are the sum of third numbers.
Fro example
1, 1, 2, 3, 5
In this above example , the first two number of the series are the sum of the third number, like 1+1=2 ,in the above series the sum first number 1 and second number 1 is third number that is 2 , or the sum of third number that is 2 and forth that is 3 is 5.
write a javascript program to find n number of fibonacci series.
output:
0 Comments