11.
What does the operator
12.
What will be the result of 3 * 'A' in JavaScript?
13.
What will be the value of x after executing the code: let x = 5; x += '2';?
14.
What will be the output of '5' + 2 - 1 in JavaScript?
15.
What is the value of x after executing the code: let x = 10; x += 5; x /= 3;?
16.
What will be the result of '10' + 10 in JavaScript?
17.
What will be the output of 10 + '2' - 1 in JavaScript?
18.
What will be the value of x after executing the code: let x = 10; x -= 2; x *= 3;?
19.
What will be the output of '7' - 3 in JavaScript?
20.
What does the unary operator + do to a string in JavaScript?