0 votes
in JavaScript by

Look at the snippets given below and check the one in which the variable “a” isn’t equal to the “NULL”.

a. if (a!)

b. if(a!=null)

c. if(a!==null)

d. if(a!null)

1 Answer

0 votes
by
c. if(a!==null)
...