Skip to content

Instantly share code, notes, and snippets.

@niyazpk
Created December 11, 2011 14:19
Show Gist options
  • Save niyazpk/1460826 to your computer and use it in GitHub Desktop.
Save niyazpk/1460826 to your computer and use it in GitHub Desktop.
// You can override and the getters and setters
Object.defineProperty(my_object, 'inch',{
get : function() { return this.mm / 25.4; },
set : function(value) { this.mm = value * 25.4; },
enumerable: true
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment