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>