Algorithms - Fibonacci

In this blog, I will create a program for generating fibonacci sequence by using javascript and recursion.
Fibonacci of n is equal to the sum of Fibonacci of n-1 and Fibonacci of n-2. Fibonacci of 0 is 0 and Fibonacci of 1 is 1.