Untitled
unknown
plain_text
3 years ago
236 B
9
Indexable
function makeRequestToGoogle(correlationId) {
var startDate = new Date();
makeRequest("some request",{
onSuccess : function(){
var timeTakenByGoogle = new Date() - startDate;
// correlationId is still correlationId
}
})
}Editor is loading...