Created
May 17, 2017 20:16
-
-
Save codyromano/f9f15b369cf0fffd1292a80d7470896f 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
| const object1 = { | |
| people: { | |
| Alex: { | |
| occupation: 'SDE', | |
| employers: { | |
| Amazon: { | |
| founder: 'Jeff Bezos', | |
| locations: { | |
| 'Seattle': 'Headquarters' | |
| } | |
| } | |
| } | |
| } | |
| } | |
| }; | |
| const object2 = { | |
| employers: { | |
| Amazon: { | |
| locations: { | |
| 'Seattle': 'Headquarters' | |
| } | |
| } | |
| } | |
| }; | |
| isSubset(object1, object2) === true |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment