Skip to content

Instantly share code, notes, and snippets.

@msacar
Created May 1, 2020 16:22
Show Gist options
  • Save msacar/c2aa111825ead8390f006044f6d1d4ab to your computer and use it in GitHub Desktop.
Save msacar/c2aa111825ead8390f006044f6d1d4ab to your computer and use it in GitHub Desktop.
src/Student.js
import {Person} from './Person';
class Student extends Person {
constructor(name){
super(name)
this.job = "Student"
}
work(){
console.log(`${this.name} Studying.`)
}
}
export { Student }
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment