Signup/Sign In
user profile picture

Sumit Sunil Dhamane

sumitDhamane45

Joined 2 years 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
2 years ago