No type-conversion is performed on the expressions before the comparison is made.
<html> <script language="JavaScript"> <!-- if("87" !== 87) { document.write("The string 87 is NOT equal to the number 87"); } else { document.write("The string 87 is EQUAL to the number 87"); } --> </script> </html>