Internet Explorer Array.sort Unreliable

What would you expect to be the result of executing the following code?

// Create a medium size array, at least 100 items
var obj = [];
for(var j=0, k=150; j<k; j++) {
    // the value here doesn't matter.
    obj.push('ABCD'+j);
}
 
// Sort the array alphabetically.
obj.sort(function(m,p){
    m=(''+m).toLowerCase();
    p=(''+p).toLowerCase();
 
    if(m > p) return 1;
    if(m < p) return -1;
    return 0;
});

The obj Array should now be sorted, in alphabetical order based on value. BUT, in our best friend Internet Explorer, a Number Expected error may be the result. Don’t be fooled if your test array behaves correctly, it only happens intermittently for arrays of varying size!

So, I whipped up a quick test to check the damage. Iterating over array sizes from 1 to 150, running the Array sort algorithm. The following failures resulted:

Browser Failures *
Internet Explorer 6 4 sizes out of 150
Internet Explorer 7 18 sizes out of 150
Internet Explorer 8 (and Compatibility Mode) 2 sizes out of 150

* Failures may vary to the specifications of the test machine.

Of course, the Number Expected error is going to result whenever your code doesn’t return a number inside of the function callback. But the problem here is something deeper than simple application code failure. The problem is in JScript itself. Any modification to the sort arguments may result in the Number Expected error.

    m=(''+m).toLowerCase(); // modifies the argument m and is unreliable.

This problem will manifest itself more frequently if you use the Google Closure Compiler, which restructures JavaScript to reuse argument variables if possible, probably to save the 4 character penalty of a “var ” declaration.

Normally, reusing argument variables is a safe practice for primitives, since they are passed by value and not by reference, as is the case in this Array sort example 1. So, what exactly is going on here? One commenter at the Google Closure Compiler bug seems to think that the actual array values are being passed by reference instead of by value. I’m not completely convinced that’s the case.

The Fix

Don’t reuse the argument variables inside of an Array sort function.

// Changing the above example
obj.sort(function(m1,p1){
    var m=(''+m1).toLowerCase(),
        p=(''+p1).toLowerCase();
 
    if(m > p) return 1;
    if(m < p) return -1;
    return 0;
});

Check the source code of the demo file to see the different methods of modifying the arguments that I attempted.

  1. If you want to learn more about passing by value or reference, Jonathan Snook has a nice explanation.

Internet Explorer can’t make you do anything, it can only make you wish you hadn’t.

VN:D [1.9.3_1094]
Rating: 4.8/5 (12 votes cast)
Internet Explorer Array.sort Unreliable, 4.8 out of 5 based on 12 ratings
This entry was posted in JavaScript and tagged , . Bookmark the permalink. Post a comment or leave a trackback: Trackback URL.

6 Tweets

10 Comments

  1. ishtar
    Posted February 24, 2010 at 9:29 pm | Permalink

    Nice write-up. I wonder if your suggestion can be incorporated into the compiled code Google Closure compiler outputs. I noticed that the same solution (of not reassigning the argument variables) fixes the issue in IE for the problem that led me to post that ticket.

  2. Zach Leatherman
    Posted February 24, 2010 at 11:23 pm | Permalink

    I don’t see why they wouldn’t incorporate it, since it is introducing bugs in all versions of Internet Explorer. We’ll see how your report pans out. I’ve submitted a bug before to the Closure Compiler team and it was fixed right away.

  3. Pritesh Patel
    Posted April 24, 2010 at 12:07 pm | Permalink

    Thanks for this. I got my sort function working in IE8 because of this. Otherwise, it was only working in Firefox and Google Chrome.

  4. Valentin Iliescu
    Posted September 5, 2010 at 10:46 am | Permalink

    IE 9 Preview seems to be fine, ran the test several times with no failures.

One Trackback

  1. [...] Internet Explorer Array.sort Unreliable – като стана дума за лоши технологии, IE има проблем с Array.sort. [...]

Post a Comment

Your email is never published nor shared. Required fields are marked *

*
*

You may use these HTML tags and attributes: <a href="" title=""> <abbr title=""> <acronym title=""> <b> <blockquote cite=""> <cite> <code> <del datetime=""> <em> <i> <q cite=""> <strike> <strong> <pre lang="" line="" escaped="">

Additional comments powered by BackType