Is it possible to do a \"deep\" comparison of two object in Angular? What I would like to do is compare each key/value pair. For example:
Object 1
{
Assuming that the order is the same in both objects, just stringify them both and compare!
stringify
JSON.stringify(obj1) == JSON.stringify(obj2);