I have this:
var g = [{a:'a'},{a:'2'},{a:'3'}]
var c = [{a:'4'},{a:'2'},{a:'5'}]
The following statement:
g[1] == c[1]
Returns false, even though the objects look the same. Is there any way I can compare them literally so it will return me true instead of false?
({a:1}) == ({a:1}), and even[1] == [1]return false. The == operator doesn't try to automatically implement structural equality of objects. – millimoose Oct 3 '11 at 21:19