Skip to content

Instantly share code, notes, and snippets.

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

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

Select an option

Save yeco/409638 to your computer and use it in GitHub Desktop.
function Ball (type) {
this.type = type;
this.color = "red";
this.getInfo = 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