Skip to content

Instantly share code, notes, and snippets.

@zealoushacker
Created August 1, 2011 20:24
Show Gist options
  • Save zealoushacker/1118908 to your computer and use it in GitHub Desktop.
Save zealoushacker/1118908 to your computer and use it in GitHub Desktop.
A meowing Cat FTW!
var SQAPP = {};
SQAPP.Cat = function ( name ) {
this.name = name;
}
SQAPP.Cat.prototype.meow = function () {
alert(this.name + " says meow!");
}
var laula = new SQAPP.Cat("Laula");
var simon = new SQAPP.Cat("Simon");
laula.meow();
simon.meow();
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment