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 obviously looks like return escaped will never be executed. Or do I miss something?
Reference: https://github.com/jquery/sizzle/blob/master/sizzle.js#L129

_argument, ... – redShadow Feb 8 at 12:02_is understandable, since for some reason (possibly to preserve compatibility) the authors need to get the second argument only, besides I'd usearguments[1]instead. – VisioN Feb 8 at 12:08NaN !== NaNwill always returntrue– Alexander Feb 8 at 12:18argumentscan have a fairly high performance cost. In a library like sizzle where every ms can count, not usingargumentsis likely the wiser choice stackoverflow.com/questions/5325554/… – BLSully Feb 8 at 16:26