isDeepEqual(oldValue, newValue)
Determines if the values of two objects are the same by performing a deep comparison.
Returns
The Boolean value true if the values of the objects are the same.
Parameters
Name | Type | Description | Required |
oldValue | object | The value of the first object. | ✅ |
newValue | object | The value of the second object. | ✅ |
Usage example
In this example, the API returns the Boolean value true.
PCore.isDeepEqual({'a': '123'}, {'a': '123'});
Previous topic getViewResources() Next topic isValidSemanticURL()