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
AnswerD.
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.