Skip to content

Instantly share code, notes, and snippets.

@TheNorthEestern
Created May 16, 2013 22:00
Show Gist options
  • Save TheNorthEestern/5595459 to your computer and use it in GitHub Desktop.
Save TheNorthEestern/5595459 to your computer and use it in GitHub Desktop.
this.bindDynamicFunction = function(o, property, value){
var _value = value;
var _funcName = (property.charAt(0).toUpperCase() + property.slice(1));
o["get" + _funcName] = function(){
return _value;
};
o["set" + _funcName] = function(v){
_value = v;
};
};
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment