Signup/Sign In
user profile picture

Sumit Sunil Dhamane

sumitDhamane45

Joined one year ago

Answers

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

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

function processResponse()
{
console.log("response received...");
console.log("Processing response...");
}

makeHTTPCall("here insert your given url");



try this
12 months ago