Last active
May 1, 2020 16:33
-
-
Save msacar/2a613e771fd43b1b6ce18a11564a7ad0 to your computer and use it in GitHub Desktop.
src/index.js
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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