Skip to content

Instantly share code, notes, and snippets.

@andevsoftware
Created February 27, 2016 14:06
Show Gist options
  • Save andevsoftware/838a78a6db5d167f3589 to your computer and use it in GitHub Desktop.
Save andevsoftware/838a78a6db5d167f3589 to your computer and use it in GitHub Desktop.
BaseObject - static - getter
class Animal extends BaseObject {
}
var animal = new Animal();
// animal.static returns Animal's constructor
//
// Animal() {
// _super.apply(this, arguments);
// }
var animal2 = new animal.static;
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment