Skip to content

Instantly share code, notes, and snippets.

@msacar
Created May 1, 2020 16:19
Show Gist options
  • Save msacar/faa5ca8299eb754ef6a714329f9c3744 to your computer and use it in GitHub Desktop.
Save msacar/faa5ca8299eb754ef6a714329f9c3744 to your computer and use it in GitHub Desktop.
src/Person.js
class Person {
constructor(name){
this.name = name
}
work(){
console.log(`${this.name} has no job to`)
}
}
export { Person }
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment