Only works in modern browsers IE9+ (but then, so does Canvas / SVG). ``` var MyClass = function () { this.myProperty = 'foo'; Object.defineProperties(this, { myProperty: { enumerable: true, value: myProperty, writable: true } }); } ```