JSFiddle - React, Tailwind, and code Playground

by Kevin Faulhaber

JavaScript

(function(prev, next, second){
    var fib = prev + second;
    console.log(fib);
    second(prev, next, this);
    
})(0, 0, function(prev, next, first){
    var fib = prev + next;
    console.log(fib);
    first(next, fib, this);
});