Skip to content

Instantly share code, notes, and snippets.

@yiwenl
Created February 28, 2015 10:54
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save yiwenl/50806a32bb7bfeb1baef to your computer and use it in GitHub Desktop.
Save yiwenl/50806a32bb7bfeb1baef to your computer and use it in GitHub Desktop.
Getter / Setter for Javascript function prototype
p.__defineGetter__("test", function() {
return "testing testing";
});
p.__defineSetter__("test", function() {
// DO SOMETHING
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment