回调函数:
request = prepare_the_request()
send_request_asynchronomously(request, function(response) {
display(response);
})
异步请求,提供一个当服务器的响应到达时随即触发的回调函数。异步函数立即返回,客户端不会被阻碍。
当我们传递一个函数作为参数给send_request_asynchronomously,一旦接受到响应时,它就会被调用。
---------------------------------------------------------
Function.prototype.method = function (name, func) {this.prototype[name] = func
return this;
}
String.method('trim', function() {
return this.replace(/^\s+|\s+$/g, '');
})
document.writeln('"' + " neat ".trim() + '"');