Skip to content

Instantly share code, notes, and snippets.

@rndme
Created February 24, 2016 00:45
Show Gist options
  • Save rndme/a3a3dfea0847a5710d25 to your computer and use it in GitHub Desktop.
Save rndme/a3a3dfea0847a5710d25 to your computer and use it in GitHub Desktop.
// uses arrow functions to define methods and creates an un-breakable bind to `this`
var x=new function(){
Object.assign(this, {
val : 530,
get: ( )=> this.val,
set: (v)=> this.val=v,
});
};
x.get(); // 530
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment