0 votes
in JavaScript by
Check whether the following given statements for the Strictly equal operator are true or false:

a) If the data type of two values are equal, they are Equal.

b) If both values are undefined and both are null, they are Equal.

a) False True

b) False False

c) True False

d) True True

1 Answer

0 votes
by

Answer: A

Reason: The first statement does not follow the properties of strictly equal (===)operator, but second statement follows.

...