1.
What is the result of 5 + 3 in JavaScript?
2.
What is the result of 10 - 6 in JavaScript?
3.
What is the result of 7 * 3 in JavaScript?
4.
What is the result of 20 / 5 in JavaScript?
5.
What is the result of 10 % 3 in JavaScript?
6.
What is the result of 2 ** 3 in JavaScript?
7.
What will be the value of a after let a = 5; a++;?
8.
What will be the value of a after let a = 5; a--;?
9.
What is the result of 10 + "5" in JavaScript?
10.
What is the result of "10" - 2 in JavaScript?