what does apply() mean

what does apply() mean

I ran into this code and cannot find a reference in the jquery API

$li.click(function(e) {
                setCurr(this);
return o.click.apply(this, [e, this]);
            });

What does apply() mean?

Thank you