Guest User

Untitled

a guest
May 26th, 2018
84
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.16 KB | None | 0 0
  1. function Ball () {
  2. this.type = "round";
  3. this.color = "red";
  4. }
  5.  
  6. Ball.prototype.getBallInfo = function () {
  7. return this.color + ' ' + this.type + ' Ball';
  8. }
Add Comment
Please, Sign In to add comment