Answers for "Compare unequality of two operands."

0

Compare unequality of two operands.

<!DOCTYPE html>
<html>
<head>
   <title>Operator Example</title>
</head>
<body>
   <script language="JavaScript">
      console.log(" 1 != '1' " + (1 != '1'));
      console.log(" 1 !== '2' " + (1 !== '2'));
   </script>
</body>
</html>
Posted by: Guest on June-02-2020

Code answers related to "Compare unequality of two operands."

Code answers related to "Javascript"

Browse Popular Code Answers by Language