11.
How does JavaScript interpret the statement let a, b = 5, c;?
12.
What is the behavior of the code let a, b = 5, c = b;?
13.
Which of the following is a disadvantage of declaring multiple variables in one statement?
14.
What happens if you declare variables with the same name in one statement?
15.
What is the outcome of the code let x = 10, y = 5, x = 20;?