Prev Demo
Greater Than Or Equal To Operator With Two Equal Value In Javascript
Next Demo
Write code here
J
|
B
|
A
<!DOCTYPE html> <html> <head> <title>Demo</title> </head> <body> <h1>Greater than or Equal to</h1> <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> </body> </html>
Note: We DO NOT save your trial code in our database.
Output