1.

The statement a===b refers to _________(a) Both a and b are equal in value, type and reference address(b) Both a and b are equal in value(c) Both a and b are equal in value and type(d) There is no such statementI got this question in an international level competition.I would like to ask this question from Types, Values and Variables in chapter Lexical Structures of JavaScript

Answer»

The CORRECT answer is (c) Both a and b are equal in VALUE and type

The best I can EXPLAIN: ”===” OPERATOR is known as the strict comparison operator. A strict comparison (===) is only true if the operands are of the same type and the CONTENTS match.



Discussion

No Comment Found

Related InterviewSolutions