Created
January 5, 2021 09:36
-
-
Save shahab570/edcff1818461096833dfb80a8eac659f to your computer and use it in GitHub Desktop.
This file contains 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
function Doctor(name, surname) { | |
this.name = name; | |
this.surname = surname; | |
this.father = null; | |
} | |
var Mikel = new Doctor("Mikel", "Jordan"); | |
var Russel = new Doctor("Russel", "Domingo"); | |
Mikel.father = Russel; |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment