jQuery([1]) simply passes an array with one record containing the integer 1 in jQuery, which returns a wrapper in this array containing all the jQuery prototype methods.
It then assigns the variable of the element argument to the same array, and then returns the entire jQuery instance.
In appearance, the entire function simply inserts a single element into a reused jQuery object and returns it.
It is assumed that the speed is accelerated, and in fact this happens when you count millions of iterations for more than a second, but, in my opinion, this is a clear example of micro-optimization that can bite your ass for long debugging hours. - Perfection kills.
David source share