Skip to content

Instantly share code, notes, and snippets.

@kevinmorio
Created September 11, 2015 19:56
Show Gist options
  • Save kevinmorio/9f7151e6ff3091557b54 to your computer and use it in GitHub Desktop.
Save kevinmorio/9f7151e6ff3091557b54 to your computer and use it in GitHub Desktop.
var Zone = function(name) {
this.name = name;
}
Zone.prototype.toString = function() {
return "Zone " + this.name;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment