Which of the following is not basic JavaScript operator?
a) logical
b) comparison
c) evaluation
d) arithmetic
Which of the following operator works with one operand?
a) unary
b) binary
c) ternary
d) none of these
Which of the following operator works with two operands?
a) unary
b) binary
c) ternary
d) none of these
Which of the following variable assignment is not valid?
a) amount=70;
b) amount=110;
c) amount=50p;
d) amount=”70”;
The statement I+=3 has the same effect as…….
a) I=I+3;
b) I=3;
c) I-3=I
d) I3
Which of the following operator is used to increase the value of variable?
a) ++
b) +-
c) >>
d) none of these