JSFiddle - React, Tailwind, and code Playground

by s_hiroshi

JavaScript

let counter = (function(a) {
    return function(b) {
        a++;
        console.log(a + b);
    }
})(10);
counter(1);
counter(2);
counter(3);