Skip to content

Instantly share code, notes, and snippets.

@darthneel
Last active August 29, 2015 14:17
Show Gist options
  • Save darthneel/2004c3b395829ffa2d63 to your computer and use it in GitHub Desktop.
Save darthneel/2004c3b395829ffa2d63 to your computer and use it in GitHub Desktop.
function objectsAreEqual(objectA, objectB) {
var objectAKeys = Object.keys(objectA);
for (var i = 0; i < objectAKeys.length; i++) {
var prop = objectAKeys[i];
if (objectA[prop] !== objectB[prop]) {
return false;
}
};
return true;
};
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment