Skip to content

Instantly share code, notes, and snippets.

@szainmehdi
Created May 22, 2015 06:12
Show Gist options
  • Save szainmehdi/7d0d2e18601146deef86 to your computer and use it in GitHub Desktop.
Save szainmehdi/7d0d2e18601146deef86 to your computer and use it in GitHub Desktop.
import Application from "backbone"
class App extends Backbone.Application {
version = '0.1';
constructor() {
setTimeout(() => this.start(), 1000);
}
start() {
console.log(this.version);
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment