Looking for a way to compare two different data storages that contain the same data. The data in question is:
const object1 = {
"name": "John",
"age": "30",
"height": "180 cm",
"standard": "10th"
}
The comparison should consider the data as identical even if the order of the elements in the object is changed.
I've attempted to hash the data and compare them in batches, but due to the size of the input data, this method is not efficient.
Seeking a more efficient solution to this problem.