Skip to content

Instantly share code, notes, and snippets.

@kalupa
Forked from Maciek416/gist:2473915
Created April 24, 2012 13:40
Show Gist options
  • Save kalupa/2479751 to your computer and use it in GitHub Desktop.
Save kalupa/2479751 to your computer and use it in GitHub Desktop.
Object.defineProperties(Circle.prototype, {
radius: {
get: function(){
},
set: function(r){
}
},
color: {
get: function(){
},
set: function(r,g,b){
}
}
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment