Recently I found one weird line in the jQuery sources (last version 1.9.1, Sizzle package, line 129 funescape function):
funescape = function( _, escaped ) {
    var high = "0x" + escaped - 0x10000;
    // NaN means non-codepoint
    return high !== high ?            // <--- LINE 129
        escaped :
        // BMP codepoint
        high < 0 ?
            String.fromCharCode( high + 0x10000 ) :
            // Supplemental Plane codepoint (surrogate pair)
            String.fromCharCode( high >> 10 | 0xD800, high & 0x3FF | 0xDC00 );
};
What is the reason to make high !== high comparison? It looks like return escaped will never be executed. Or do I miss something?
Reference: jQuery Sizzle
 
     
     
     
    