I'm comparing two dates in objA and objB, and they are not equal as the following console output shows.
Can't understand why..
objA[keysA[i]]
Sun Sep 25 2016 00:00:00 GMT+0900 (KST)
objB[keysA[i]]
Sun Sep 25 2016 00:00:00 GMT+0900 (KST)
typeof objA[keysA[i]]
"object"
typeof objB[keysA[i]]
"object"
objA[keysA[i]] !== objB[keysA[i]]
true
objA[keysA[i]]+0 !== objB[keysA[i]]+0which coerces the dates to a Number