1.
Which of the following is the assignment operator in JavaScript?
2.
What does the assignment operator = do in JavaScript?
3.
What will be the value of x after the following code: let x = 10; x += 5;
4.
How can you swap the values of two variables a and b in one line?
5.
What will let x = 5, y = 10; [x, y] = [y, x]; do?
6.
What is the result of let x = 10; x -= 3;?
7.
How to increment a variable count by 1?
8.
What is the equivalent of x *= 4?
9.
Which operator assigns a remainder to a variable?
10.
What is the outcome of let x = 8; x %= 3;?