Skip to content

Instantly share code, notes, and snippets.

@tessafallon
Created January 23, 2014 18:26
Show Gist options
  • Save tessafallon/8584065 to your computer and use it in GitHub Desktop.
Save tessafallon/8584065 to your computer and use it in GitHub Desktop.
Who wants theFunc?
function thatFunc(name){
this.name = name;
}
thatFunc.prototype.theFunc = function(){
console.log(this.name + " want the funk!");
}
var whoWants = new thatFunc("We");
whoWants.theFunc();
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment