Skip to content

Instantly share code, notes, and snippets.

@maurobringolf
Last active December 22, 2016 16:09
Show Gist options
  • Save maurobringolf/1c4d7c1fb10e841f2c1a3606a445fd51 to your computer and use it in GitHub Desktop.
Save maurobringolf/1c4d7c1fb10e841f2c1a3606a445fd51 to your computer and use it in GitHub Desktop.
//defining a normal property o.x using getters and setters
var o = {
c: 1,
get x() { return this.c; },
set x(y) { this.c = y; }
}
o.x; //1
o.x = 3;
o.x; //3
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment