11.
Which keyword is used to declare block-scoped variables in JavaScript?
12.
What is the primary distinction between const and let in JavaScript?
13.
What will be logged to the console after executing the code above?
14.
Which of the following best describes the behavior of JavaScript's const keyword?
15.
What happens if you try to declare a const variable without initializing it immediately?
16.
In JavaScript, const variables are not hoiste What does this mean?
17.
What will be the output of the code above?
18.
Which statement about JavaScript's const is true?
19.
What is the benefit of using const over var in JavaScript?
20.
What will happen when you try to execute this code?