Skip to content

Instantly share code, notes, and snippets.

@shahab570
Created January 5, 2021 09:36
Show Gist options
  • Save shahab570/edcff1818461096833dfb80a8eac659f to your computer and use it in GitHub Desktop.
Save shahab570/edcff1818461096833dfb80a8eac659f to your computer and use it in GitHub Desktop.
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