Last active
August 29, 2015 14:19
-
-
Save itochan/4c5fe5bb6b34abaee5d3 to your computer and use it in GitHub Desktop.
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
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