DEV Community

Discussion on: Challenge: Write the recursive Fibonacci algorithm in a different language.

 
avalander profile image
Avalander

Aleksei, if you try to work with very large numbers in Javascript, at some point (before the 10000th element in the fibonacci series) it just returns Infinity because it can't deal with them.