Skip to content

Instantly share code, notes, and snippets.

@yeco
Created May 22, 2010 01:15
Show Gist options
  • Select an option

  • Save yeco/409650 to your computer and use it in GitHub Desktop.

Select an option

Save yeco/409650 to your computer and use it in GitHub Desktop.
function Ball () {
this.type = "round";
this.color = "red";
}
Ball.prototype.getBallInfo = function () {
return this.color + ' ' + this.type + ' Ball';
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment