Skip to content

Instantly share code, notes, and snippets.

@rndme
Last active February 24, 2016 01:24
Show Gist options
  • Save rndme/8b2b72ec2fb461884942 to your computer and use it in GitHub Desktop.
Save rndme/8b2b72ec2fb461884942 to your computer and use it in GitHub Desktop.
// uses arrow functions to define methods seperatly from data, like an alternative to .prototype.
var x=function(){
return { // public methods:
get: ( )=> this.val,
set: (v)=> this.val=v,
};
}.call({ // private state:
val: 902
});
x.get(); // 902
x.val; // undefined
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment