Untitled

 avatar
unknown
plain_text
2 years ago
236 B
5
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...