Last active
August 29, 2015 14:17
-
-
Save darthneel/2004c3b395829ffa2d63 to your computer and use it in GitHub Desktop.
This file contains 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
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