I\'ve found unknown for me code construction on JQuery site. After some formatting it looks like:
function (a,c) {
c==null && (c=a,a=null);
The expression uses two JavaScript features :
a && (b);
is equivalent to if (a) (b);
a=b,b=c;
is equivalent to { a=b; b=c }
As a result the expression is equivalent to:
if (c == null) {
c = a
a = null
}