Skip to content

Instantly share code, notes, and snippets.

@himeshvats19
Created June 26, 2019 07:09
Show Gist options
  • Save himeshvats19/398eebb510b7fad85e06cdcd0f83750f to your computer and use it in GitHub Desktop.
Save himeshvats19/398eebb510b7fad85e06cdcd0f83750f to your computer and use it in GitHub Desktop.
class baseModel {
constructor(options = {}, data = []) { // class constructor
this.name = 'Base'
this.url = 'http://azat.co/api'
this.data = data
this.options = options
}
getName() { // class method
console.log(`Class name: ${this.name}`)
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment