Skip to content

Instantly share code, notes, and snippets.

@hokaccha
Created March 16, 2013 05:35
Show Gist options
  • Save hokaccha/5175134 to your computer and use it in GitHub Desktop.
Save hokaccha/5175134 to your computer and use it in GitHub Desktop.
var Foo = Class.extend({
method: function() {
console.log('Hi!');
}
});
var Bar = Foo.extend({
});
var Baz = Bar.extend({
method: function() {
this._super();
}
});
var baz = new Baz();
baz.method(); //=> Hi!
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment