Skip to content

Instantly share code, notes, and snippets.

@aaronfrost
Created March 23, 2013 06:56
Show Gist options
  • Save aaronfrost/5226739 to your computer and use it in GitHub Desktop.
Save aaronfrost/5226739 to your computer and use it in GitHub Desktop.
Arrow Function - 2 - Object
// 2. Objects
function Foo(){
this.bar = function(){
console.log(this);
}
return this;
}
new Foo().bar(); //logs a new Foo object
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment