I find it in other people's source code alot. for Example
var y = $('some-selector'),
u = $(document).scrollTop();
0 > u && (u = 0); //mysterious line..
var w = 'another variable';
Here's another example :
! function(foo) {
foo.fn.equalWidths = function() {
var u = 0,
t = foo(this);
return t.each(function() {
var c = foo(this).innerWidth();
t > u && (u = t) // mysterious line again
}), t.css("width", u)
}, foo("[data-equal]").each(function() {
var u = foo(this),
t = u.data("equal");
u.find(t).equalWidth()
})
}(jQuery);
Please what's the exact function of the mysterious lines from the codes above? What does the comparison do..? is it a short form of something..?