Updates:
        Status: Invalid

Comment #1 on issue 188 by [email protected]: Javascript array sort not  
functioning properly
http://code.google.com/p/v8/issues/detail?id=188

You're sort function is broken.  Returning 0 means they are equal, and you  
do this
even when they are not.  The following correctly formed sort function works  
fine:

function sortDate(a,b) {        
        return a.getTime() - b.getTime();
}


--
You received this message because you are listed in the owner
or CC fields of this issue, or because you starred this issue.
You may adjust your issue notification preferences at:
http://code.google.com/hosting/settings

--~--~---------~--~----~------------~-------~--~----~
v8-dev mailing list
[email protected]
http://groups.google.com/group/v8-dev
-~----------~----~----~----~------~----~------~--~---

Reply via email to