Skip to content

Instantly share code, notes, and snippets.

@ezirmusitua
Created January 21, 2019 02:37
Show Gist options
  • Save ezirmusitua/bc20eb0a8b5862f6623cc474cafcf9fc to your computer and use it in GitHub Desktop.
Save ezirmusitua/bc20eb0a8b5862f6623cc474cafcf9fc to your computer and use it in GitHub Desktop.
[Compare object] compare object in javascript #javascript #node #object
function isEqual(obj1, obj2) {
return JSON.stringify(obj1) === JSON.stringify(obj2);
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment