0
Q:

javascript greater than or equal to

>= // greater than or equal 
<= // less than or equal
> // greater than
< // less than
== // equals
=== // strictly equals
!= // not equals
!== // stricly not equals
3
The greater than or equal operator ( >= ) returns true if the left operand is greater than or equal to the right operand, and false otherwise.
1
| <= | less than or equal to |	x <= 8 | true |
2
//Equal to or more than
a >= b
//Equal to or less than
a <= b
2
let a=12
if(a!=5){
  console.log(true)
}
since a is not equal to 5, it will print true
1

New to Communities?

Join the community