javascript greater than or equal to not working 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: less than equal to in javascript
| <= | less than or equal to | x <= 8 | true |
Example 3: not equal to in js
let a=12
if(a!=5){
console.log(true)
}
since a is not equal to 5, it will print true