Skip to content

Instantly share code, notes, and snippets.

@codyromano
Created May 17, 2017 20:16
Show Gist options
  • Select an option

  • Save codyromano/f9f15b369cf0fffd1292a80d7470896f to your computer and use it in GitHub Desktop.

Select an option

Save codyromano/f9f15b369cf0fffd1292a80d7470896f to your computer and use it in GitHub Desktop.
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