Skip to content

Instantly share code, notes, and snippets.

@msacar
Last active May 1, 2020 16:33
Show Gist options
  • Save msacar/2a613e771fd43b1b6ce18a11564a7ad0 to your computer and use it in GitHub Desktop.
Save msacar/2a613e771fd43b1b6ce18a11564a7ad0 to your computer and use it in GitHub Desktop.
src/index.js
import {Person} from './Person.js';
import {Student} from './Student';
let person = new Person('Ali')
let student = new Student('Veli')
person.work()
student.work()
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment