Skip to content

Instantly share code, notes, and snippets.

@hsh2001
Created February 5, 2020 06:05
Show Gist options
  • Save hsh2001/653348d19e171ab876415c2d234cc412 to your computer and use it in GitHub Desktop.
Save hsh2001/653348d19e171ab876415c2d234cc412 to your computer and use it in GitHub Desktop.
Check object is same
function isSameObject(a, b) {
if (a === b) return true;
for (let key in a) {
if (a[key] !== b[key]) return false;
}
return true;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment