Skip to content

Instantly share code, notes, and snippets.

@yoya
Created August 11, 2015 09:34
Show Gist options
  • Save yoya/1292cc4c96b21bd64ba9 to your computer and use it in GitHub Desktop.
Save yoya/1292cc4c96b21bd64ba9 to your computer and use it in GitHub Desktop.
defineProperty
var o = {};
Object.defineProperty(o, 'a', {
get: function() { return this.value*2; },
set: function(v) { this.value = v*3; },
});
o.a = 5;
console.log(o);
console.log(o.a);
// result
// { value: 15 }
// 30
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment