The following is an example comparing two JavaScript objects, but the return values confuse me.
var i=new Object()
var j=new Object()
i==j false
i!=j true
i>=j true
i<=j true
i>j false
i<j false
How are the values defined for the above? I am having trouble understanding.
source
share