x
 
1
<!DOCTYPE html>
2
<html>
3
<body>
4
5
<h1>JavaScript Comparison >= Operator</h1>
6
<script>
7
    let x = 8;
8
    let y = '8';
9
10
    document.write(x >= 8);
11
    document.write("<br>")
12
    document.write(y >= '10');
13
    document.write("<br>")
14
    document.write(x >= '8');
15
    document.write("<br>")
16
    document.write(y >= 10);
17
</script>
18
19
</body>
20
</html>