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)

Related questions

0 votes
asked Dec 2, 2022 in JavaScript by john ganales
0 votes
asked Mar 24, 2021 in JavaScript by sharadyadav1986
...