evan
0
Q:

greater than or equal to javascript

>= // 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
if(a <= 5){
   yourFunction();
}
2

New to Communities?

Join the community