"This is a fascinating article, partial function application is a really useful technique John's example:
var delay = setTimeout.partial(undefined, 10);
delay(function(){
alert( "A call to this function will be temporarily delayed." );
});
is a good one. Don't miss the comments where John, Dean Edwards, and Oliver Steele talk more about it. "
On 2/22/08 joew said: