1.
What is variable redeclaring in JavaScript?
2.
Which keyword allows redeclaring variables in JavaScript?
3.
What is the behavior when redeclaring a variable with var in JavaScript?
4.
What is the behavior when redeclaring a variable with let or const in JavaScript?
5.
What is the output of the following code snippet?
6.
Which keyword should you use to avoid redeclaring variables in JavaScript?
7.
What is the behavior of a redeclared variable in JavaScript?
8.
What is the scope of a redeclared variable in JavaScript with var?
9.
What is the scope of a redeclared variable in JavaScript with let or const?
10.
Which statement about redeclaring variables in JavaScript is true?