Fibonacci series program in javascript || interview question

preview_player
Показать описание
how to print fibonacci series in javascrpt
A Fibonacci series in JavaScript is written as following: 0, 1, 1, 2, 3, 5, 8, 13, 21, 34 and so on. As we have seen, the Fibonacci sequence is the integer sequence in which the first two terms are 0 and 1. After that, the following term is defined as the sum of the previous two terms
in programming, Fibonacci series is used to calculate various mathematical equations, such as Fibonacci numbers and Binet's Formula. It can also be used to analyze stock market trends or computer science algorithms like the Fibonacci heap and Fibonacci search tree
Рекомендации по теме