What does javascript use instead of == and !=?
It uses bitwise checking
It uses === and !== instead
It uses equals() and notequals() instead
It uses equalto()
Correct Answer : B
The snippet that has to be used to check if “a” is not equal to “null” is
The statement a===b refers to