MCQ Single Best Answer Easy

QWhat will be the output of the following JavaScript code?

const a = 11;
{
    const a = 22;
    {
        const a = 33;       
    }    
}
console.log(a);
 

ID: #20282 Block scope in JavaScript 101 views
Question Info
#20282Q ID
EasyDifficulty
Block scope in JavaScriptTopic

Choose the Best Option

Click any option to instantly check if you're correct.

  • A 10
  • B 11
  • C Undefined
  • D Error
Correct Answer: Option B

Explanation


11

Share This Question

Challenge a friend or share with your study group.