Skip to content

Instantly share code, notes, and snippets.

@creationix
Created October 14, 2010 02:14
Show Gist options
  • Save creationix/fba9a6950fc8272c36f1 to your computer and use it in GitHub Desktop.
Save creationix/fba9a6950fc8272c36f1 to your computer and use it in GitHub Desktop.
function Person() {}
Person.prototype = {
get name() {
return "foo";
}
};
var p = new Person();
console.log(p.name);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment