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