Quiz JavaScript Operators
Test your knowledge of JavaScript operators with my MCQ quiz covering arithmetic, logical, bitwise, comparison, and more.
1.
What will the expression 10 + 5 * 2 evaluate to in JavaScript?
2.
Which operator is used to assign a value to a variable?
3.
What is the output of the expression 5 == "5" in JavaScript?
4.
Which of the following operators checks both value and type?
5.
Which operator would you use to combine two strings?
6.
What will the expression 5 & 3 return?
7.
What is the purpose of parentheses in an expression like (100 + 50) * 2?