var mfib = memoize(function (i) { if (i < 2) return 1; return mfib(i-1) + mfib(i-2); }); timer(fib)(34); timer(mfib)(34);
Output