JavaScript Memoization

Medium
13
42.2% Acceptance

In this lab, you will be working with a well-known concept in programming called memoization. It is an optimization technique that involves storing the results of expensive function calls, and then returning the stored results when the same inputs occur again.

Your task is to create a recursive function to calculate fibonacci numbers and optimize it using memoization.