MCQs > IT & Programming > JavaScript > What's the output? function a() { alert('Outer function!'); return function(){ alert('Inner function!'); }; } var a = a(); a();

JavaScript MCQs

What is the result of the following code snippet?

function a() {
  alert('Outer function!');
  return function(){
    alert('Inner function!');
  };
}
var a = a();
a();


Answer

Correct Answer: Two alert boxes pop up, the first one displaying "Outer function!", and the second one displaying "Inner function!"

Explanation:

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

JavaScript Skill Assessment

Overall Skill Level-Poor

Your Skill Level: Poor

Retake Quizzes to improve it

search

JavaScript Skill Assessment

Overall Skill Level-Poor

Your Skill Level: Poor

Retake Quizzes to improve it