Vidyalelo
JavaScript · Q19

Basic And Variables

Programming · JavaScript · question 19

Q19

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
Answer
D.
There is no such statement

Answer: Option C

Solution

Answer: Option C
Solution:
a==b returns a true if a and b refer to the same objec ,so they are equal, else it returns a false.