function isObjectValueEqual(a, b) { if((a == null && b != null) || (b == null && a != null)){ return false; } if(a instanceof Array && b instanceof Array){ if(a.length != b.length){ return false; } for (var i = 0; i < a.length; i++) { var aEle = a[i]; var bEle = b[i]; if(aEle.constructor == Object && bEle.constructor == Object){ if(!isObjectValueEqual(aEle, bEle)){ return false; } } else if (aEle !== bEle) { return false; } } for (var i = 0; i < b.length; i++) { var aEle = a[i]; var bEle = b[i]; if(aEle.constructor == Object && bEle.constructor == Object){ if(!isObjectValueEqual(aEle, bEle)){ return false; } } else if (aEle !== bEle) { return false; } } } else if(a.constructor == Object && b.constructor == Object){ var aProps = Object.getOwnPropertyNames(a); var bProps = Object.getOwnPropertyNames(b); if (aProps.length != bProps.length) { return false; } for (var i = 0; i < aProps.length; i++) { var propName = aProps[i]; if(a[propName].constructor == Object && b[propName].constructor == Object){ if(!isObjectValueEqual(a[propName], b[propName])){ return false; } } else if (a[propName] instanceof Array && b[propName] instanceof Array) { if(!isObjectValueEqual(a[propName], b[propName])){ return false; } } else if (a[propName] !== b[propName]) { return false; } } for (var i = 0; i < bProps.length; i++) { var propName = bProps[i]; if(a[propName].constructor == Object && b[propName].constructor == Object){ if(!isObjectValueEqual(a[propName], b[propName])){ return false; } } else if (a[propName] instanceof Array && b[propName] instanceof Array) { if(!isObjectValueEqual(a[propName], b[propName])){ return false; } } else if (a[propName] !== b[propName]) { return false; } } } return true; }