Single Choice
Easy
QWhat will be the output of the following JavaScript code?
const a = 11;
{
const a = 22;
{
const a = 33;
console.log(a);
}
}
ID: #20281
Block scope in JavaScript
87 views
Question Info
#20281Q ID
EasyDifficulty
Block scope in JavaScriptTopic
Your Answer
Choose the Best Option
Click any option to instantly check if you're correct.
Correct Answer
Explanation
33
Continue Practice
Share
Share This Question
Challenge a friend or share with your study group.
More from This Topic