isEqual (a, b) Booleanpublic
Defined in packages/ember-runtime/lib/is-equal.js:1
Compares two objects, returning true if they are equal. Ember.isEqual('hello', 'hello'); // true
Ember.isEqual(1, 2); // false
isEqual is a more specific comparison than a triple equal comparison. It will call the isEqual instance method on the objects being compared, allowing finer control over when objects should be considered equal to each other. let Person =