Skip to content

Instantly share code, notes, and snippets.

@elcodabra
Created February 4, 2020 14:06
Show Gist options
  • Save elcodabra/1596d813036a23a67d6602818ccb4216 to your computer and use it in GitHub Desktop.
Save elcodabra/1596d813036a23a67d6602818ccb4216 to your computer and use it in GitHub Desktop.
export default class Animal {
constructor(name) {
this.name = name
}
getName() {
return this.name
}
}
import Animal from './Animal'
const cat = new Animal('Барсик')
console.log(cat.getName()) // Барсик
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment