I have a custom class that has several members. I need to compare them to each other. javascript lets me write:
var a = new MyType(1);
var b = new MyType(2);
if (a < b) { ...
but I don't understand the behavior of the logical comparison. Can someone explain the semantics of the < comparison in the above code? Is there a way to control what happens so that I can get right behavior? I know I can write a comparison method for the class, but since javascript lets me write it, I wondered what it thought it was doing.
Thanks.