Which of the following operators is used to perform a logical AND assignment?
A). &&
B). &&=
C). &=
D). and=
How do you write an assignment statement to decrement a by 1 in JavaScript?
A). a =- 1;
B). a -= 1;
C). a == -1;
D). a = 1;
What does the ??= operator do?
A). Logical AND assignment
B). Logical OR assignment
C). Nullish coalescing assignment
D). Bitwise AND assignment
What will be the value of b after let b = null; b ??= 'default';?
A). null
B). 'default'
C). undefined
D). NaN
What will be the value of a after let a = 5; a /= 2;?
A). 2
B). 5
C). 10
D). 0
How do you write an assignment statement to increment a by 3 in JavaScript?
A). a += 3;
B). a = 3;
C). a == 3;
D). a + 3;
How does the ^= operator work in JavaScript?
A). Performs a logical XOR
B). Performs a bitwise XOR
C). Performs a logical AND
D). Performs a bitwise AND
Which operator would you use to shift bits to the right and assign the result?
A). >>>=
B). >>=
C). <<=
D). &=
What does the += operator do?
A). Adds and assigns
B). Subtracts and assigns
C). Multiplies and assigns
D). Divides and assigns
What will be the value of x after let x = 5; x -= 2;?
A). 7
B). 2
C). 3
D). 5