Home » JavaScript » JavaScript Variables » Question
  1. The statement p===q refers to _________
    1. There is no such statement
    2. Both p and q are equal in value, type and reference address
    3. Both p and q are equal in value
    4. Both p and q are equal in value and type
    5. None of these
Correct Option: D

”===” operator is known as strict comparison operator. A strict comparison (===) is only true if the operands are of the same type and the contents match.



Your comments will be displayed only after manual approval.