MCQs > IT & Programming > Ajax > What does the getAllResponseHeaders() function do ?

Ajax MCQs

What does the getAllResponseHeaders() function do ?

varxhttp = new XMLHttpRequest(); xhttp.onreadystatechange = function() { if (this.readyState == 4 &&this.status == 200) { console.log(this.getAllResponseHeaders()); } }; xhttp.open("GET", "ajax_info.txt", true); xhttp.send();

Answer

Correct Answer: Get all response headers of Ajax call

Explanation:

Note: This Question is unanswered, help us to find answer for this one

Ajax Skill Assessment

Overall Skill Level-Poor

Your Skill Level: Poor

Retake Quizzes to improve it

search

Ajax Skill Assessment

Overall Skill Level-Poor

Your Skill Level: Poor

Retake Quizzes to improve it