Skip to content

Instantly share code, notes, and snippets.

@cirpo
Created December 24, 2010 21:33
Show Gist options
  • Select an option

  • Save cirpo/754519 to your computer and use it in GitHub Desktop.

Select an option

Save cirpo/754519 to your computer and use it in GitHub Desktop.
var oggettoX = function(){
var valore = 0;
return {
increment : function(inc){
valore += inc;
},
getValue: function(){
return valore;
}
};
}();
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment