Discussion :: Javascript - CS
- 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 statement |
Answer : Option C
Explanation :
a==b returns a true if a and b refer to the same objec ,so they are equal, else it returns a false.
Be The First To Comment