Skip to content

Instantly share code, notes, and snippets.

@grodowski
Created November 7, 2016 13:28
Show Gist options
  • Save grodowski/e722ca9e674d9ecad550cac51e61a2ea to your computer and use it in GitHub Desktop.
Save grodowski/e722ca9e674d9ecad550cac51e61a2ea to your computer and use it in GitHub Desktop.
JS sample for Medium
function Foo() {
this.bacon = “Bacon!”;
}
Foo.prototype.say = function() {
console.log(this.bacon);
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment