1.
What does the const keyword signify in JavaScript?
2.
Which of the following statements about const is true?
3.
How can you declare a constant named PI with a value of 3.14 in JavaScript using const?
4.
What happens if you try to reassign a value to a constant declared using const?
5.
Which of the following statements is true about block scope in JavaScript?
6.
What will be the output of the code above?
7.
Which of the following statements is true about constants declared using const?
8.
What is the primary advantage of using block scope in JavaScript?
9.
Which of the following is NOT an example of a block in JavaScript?
10.
What will be the output of the code above?