In JavaScript the x===y statement implies that:
a) Both x and y are equal in value, type and reference address as well.
b) Both are x and y are equal in value only.
c) Both are equal in the value and data type.
d) Both are not same at all.
Answer: C
Reason: The "===" statement are called strict comparison which only gets true only if the type and content of both the operand are strictly same.
Program
Output
True False