Skip to content

Instantly share code, notes, and snippets.

@itochan
Last active August 29, 2015 14:19
Show Gist options
  • Save itochan/4c5fe5bb6b34abaee5d3 to your computer and use it in GitHub Desktop.
Save itochan/4c5fe5bb6b34abaee5d3 to your computer and use it in GitHub Desktop.
var john = {
firstName: "John",
lastName: "Smith",
};
var joanna = {
firstName: "Joanna",
lastName: "Doe",
};
var hans = {
firstName: "Hans",
lastName: "Schmidt",
};
john.friend = joanna;
joanna.friend = hans;
hans.friend = john;
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment