The statement a===b refers to
Both a and b are equal in value, type and reference address
Both a and b are equal in value
Both a and b are equal in value and type
There is no such statement
Correct Answer : C
What is divide by 0 in Javascript?
var a = 10; var b = 0; document.write(a/b);
What is the output of following Javascript?
var a = 'java'; var b = 'script'; var c = a/b; document.write(c);
What does javascript use instead of == and !=?