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