JSFiddle - React, Tailwind, and code Playground

by Chitkala More

JavaScript

function createCounter(n) {

	return Counter=>n++;
	
}

// Sample Test Cases

const counter = createCounter(10);
console.log(counter()); // 10
console.log(counter()); // 11
console.log(counter()); // 12