compare unequality of two operands

Solutions on MaxInterview for compare unequality of two operands by the best coders in the world

showing results for - "compare unequality of two operands "
Tania
13 Feb 2019
1<!DOCTYPE html>
2<html>
3<head>
4   <title>Operator Example</title>
5</head>
6<body>
7   <script language="JavaScript">
8      console.log(" 1 != '1' " + (1 != '1'));
9      console.log(" 1 !== '2' " + (1 !== '2'));
10   </script>
11</body>
12</html>