Signup/Sign In
Ask Question
Not satisfied by the Answer? Still looking for a better solution?

Javascript Level 11 lesson 5

//Even though the url is correct, It's asking to type the correct url.

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

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

makeHTTPCall(//url here);

//What's the mistake here?
by

4 Answers

shamin
Hi, I haven't reached that level yet as I am literally stuck at Level 8 Lesson 3. Please! Can you help get out there? It's about the doYoga() function twice and I don't know where I am wrong. It's been almost a week, and I cannot think outside of the box.
margs012
I have the same problem.... do you know how to fix?
sumitDhamane45
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
harldson
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');

Login / Signup to Answer the Question.