I found this question to be pretty confusing, given the available answers: Arithmetic, String, Conditional and Symbol.
I was thinking JS operator types are the ones described here:
+ Addition
– Subtraction
* Multiplication
/ Division
% Modulus
++ Increment
— Decrement
With that in mind, I thought surely “arithmetic” must be an operator type, and “string” really doesn’t seem to fit the bill. Neither do the others. So I guessed “string”, which was wrong. Next, I thought maybe I should be looking for ‘types’ and forget ‘operators’, and types would include numbers, strings and symbols, so I guessed “conditional” as not being a type, but that was also incorrect.
I know I must be misunderstanding the question. Could anyone explain where I went wrong?