Home / CSE / Javascript - CS :: Discussion

Discussion :: Javascript - CS

  1. Why does JavaScript subset disallow == and !=?

  2. A.

     It uses bitwise checking

    B.

     It uses === and !== instead

    C.

     It uses equals() and notequals() instead

    D.

     None of the mentioned

    View Answer

    Workspace

    Answer : Option B

    Explanation :

    The subset does not include the comma operator, the bitwise operators, or the ++ and — operators. It also disallows == and != because of the type conversion they perform, requiring use of === and !== instead.


Be The First To Comment