Signup/Sign In

Answers

All questions must be answered. Here are the Answers given by this user in the Forum.

try this one, it will be helpful

function makeHTTPCall(url)
{
console.log("Making HTTP call: ", url);
setTimeout(processResponse, 3000);
}

function processResponse()
{
console.log("response received...");
console.log("Processing response...");
}
makeHTTPCall('//write the URL here');
11 months ago