greater than equal to in javascript code example

Example 1: js 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

Example 2: equal to or more than javascript

//Equal to or more than
a >= b
//Equal to or less than
a <= b

Example 3: js comparison operators

Javascript Comparison Operators
== Equal to
=== Equal value and equal type
!= Not equal
!== Not equal value or not equal type
> Greater than
< Less than
>= Greater than or equal to
<= Less than or equal to
? Ternary operator

Example 4: javascript greater than or equal to

The greater than or equal operator ( >= ) returns true if the left operand is greater than or equal to the right operand, and false otherwise.

Tags:

Misc Example