Skip to content

Instantly share code, notes, and snippets.

@ryardley
Last active August 29, 2015 14:14
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save ryardley/06dd00cbde6d5f51b79d to your computer and use it in GitHub Desktop.
Save ryardley/06dd00cbde6d5f51b79d to your computer and use it in GitHub Desktop.
// Hipster < Hippie
var Hipster = Hippie.extend(function(){
var thought = 'Cafe latte';
return {
init: function(name){
Hippie.call(this, name);
this.greeting = 'Beer me!';
},
makePeace: function(){
return 'Cold drip baby.';
},
setThought: function(value){
thought = value;
},
getThought: function(){
return thought;
}
};
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment