kstoyanov

02. Fibonacci

Oct 6th, 2020 (edited)
117
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. function getFibonator() {
  2.   let f0 = 0;
  3.   let f1 = 1;
  4.  
  5.   function fibunachi() {
  6.     const oldf0 = f0;
  7.     const oldf1 = f1;
  8.  
  9.     f0 = oldf1;
  10.     f1 = oldf0 + oldf1;
  11.  
  12.     return f0;
  13.   }
  14.  
  15.  
  16.   return fibunachi;
  17. }
Add Comment
Please, Sign In to add comment