Skip to content

Instantly share code, notes, and snippets.

@brendanashworth
Created October 18, 2014 20:00
Show Gist options
  • Save brendanashworth/ebce0ce62b842fd08e4d to your computer and use it in GitHub Desktop.
Save brendanashworth/ebce0ce62b842fd08e4d to your computer and use it in GitHub Desktop.
Cat.prototype.meow = function(message) {
this.emit('meow', message);
}
// Create a cat
var kitty = new Cat('Mittens');
kitty.on('meow', function(msg) {
console.log('We got a message from Mittens:', msg);
});
kitty.meow('Purrrr');
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment