<html>
<body>
<h1>JavaScript Comparison == Operator</h1>
<script>
let x = 8;
let y = '8';
document.write(x == 8);
document.write("<br>")
document.write(y == 8);
document.write("<br>")
document.write(x == x);
document.write("<br>")
document.write(0 == false);
document.write("<br>")
document.write(0 == null);
</script>
</body>
</html>