JSFiddle - React, Tailwind, and code Playground

by guyluchenbill

JavaScript

var count = function() {
    var i = 0;
    return function() { 
     	return i++;    
    }
}();
console.log([count, count(), count(), count()]);