Skip to content

Instantly share code, notes, and snippets.

@shahab570
Created January 5, 2021 10:01
Show Gist options
  • Save shahab570/b2dfb2da0ccc5a9d3c9d209db12eb8bc to your computer and use it in GitHub Desktop.
Save shahab570/b2dfb2da0ccc5a9d3c9d209db12eb8bc to your computer and use it in GitHub Desktop.
function Player(firstName, lastName) {
this.firstName = firstName;
this.lastName = lastName;
}
var messi = new Player("Leonel", "messi");
var Pique = new Player("Gerard", "Pique");
var Team = {
Name: "Barcelona",
players: [],
};
Team.players.push(messi);
Team.players.push(Pique);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment