The snippet that has to be used to check if “a” is not equal to “null” is
The snippet that has to be used to check if “a” is not equal to “null” is Correct Answer if(a!==null)
The not-equal operator !== compares o to null and evaluates to either true or false.