Greater than or Equal to operator is an Comparison Operator which is used to check the value of the left operand is either greater or equal to the value of the right operand.
If the value of the left operand is either greater or equal to the value of the right operand, the result gives 'true'.
The symbolic representation of Greater than or Equal to is >=
.
<b>Assigning left operand value greater than the right operand value, the result gives</b> <p id="myId"></p> <script> var a = 10; var b = 6; var c = (a >= b); document.getElementById("myId").innerHTML = c; </script>
In the above code snippet we assigned greater value to the left operand and lesser value to the right operand, we used greater than or equal to operator, so the result gives 'true'.
OUTPUT
<b>Assigning left operand value equal to the right operand value, the result gives</b> <p id="myId"></p> <script> var a = 6; var b = 6; var c = (a >= b); document.getElementById("myId").innerHTML = c; </script>
Greater than or Equal to with Equal values
In the above code snippet we assigned equal values to the left operand and right operand, so the result gives 'true'.
OUTPUT
<b>Assigning left operand value less than the right operand value, the result gives</b> <p id="myId"></p> <script> var a = 4; var b = 6; var c = (a >= b); document.getElementById("myId").innerHTML = c; </script>
Greater than or Equal to with lesser value on left side
In the above code snippet we assigned lesser value to the left operand and greater value to the right operand, so the result gives 'false'.
OUTPUT
Views: 16874 | Post Order: 173