Skip to content

Instantly share code, notes, and snippets.

@rexcfnghk
Last active November 4, 2018 01:51
Show Gist options
  • Save rexcfnghk/8b1df86016b6b758774a9d1f312df05c to your computer and use it in GitHub Desktop.
Save rexcfnghk/8b1df86016b6b758774a9d1f312df05c to your computer and use it in GitHub Desktop.
var makeObject = function () {
var s = 1;
return {
getState: function() { return s; },
increment: function() {
s++;
}
};
};
var obj = makeObject();
console.log(obj.getState()); // 1
obj.increment();
console.log(obj.getState()); // 2
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment