What does the !! operator do to a value?
A). Negates the value
B). Converts the value to its boolean equivalent
C). Increments the value by 2
D). No effect
What is the result of the expression 5 + '5'?
A). 10
B). 55
C). 55
D). NaN
What does the typeof operator return for a function?
A). function
B). object
C). undefined
D). method
Which operator checks if two values are not equal and also checks for type?
A). !=
B). !==
C). <
D). >
What does the + operator do when used with two numbers?
A). Concatenates them as strings
B). Adds them
C). Multiplies them
D). Subtracts them
What is the result of the expression 3 * '3'?
A). 9
B). 9
C). 33
D). NaN
What is the result of true + false?
A). 0
B). 1
C). truefalse
D). NaN
Which operator is used for string concatenation in JavaScript?
A). -
B). *
C). +
D). /
Which of the following is not a comparison operator?
A). ==
B). >
C). <=
D). =
What is the result of 10 % 3 in JavaScript?
A). 0
B). 1
C). 2
D). 3