Skip to content

Instantly share code, notes, and snippets.

@eshimel
eshimel / counter.js
Created October 7, 2015 14:02 — forked from gaand/counter.js
//Verison 0
'use strict';
var counterFactory = function counterFactory() {
return function() {};
};
var firstCounter = counterFactory();
// firstCounter contains a reference to
// a new instance of the minimal function