MCQ Practice
Single Best Answer
Topic: Block scope in JavaScript
Q
What will be the output of the following JavaScript code?
const a = 11;
{
const a = 22;
{
const a = 33;
console.log(a);
}
}
Subchapter
Block scope in JavaScript
Action
Choose one option below