less than js 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: javascript and operator

//AND Operator expressed as &&

const x = 7;
const y = 4;

(x == 7 && y == 5); // false
(x == 3 && y == 4); // false
(x == 7 && y == 4); // true

if (condition == value && condition == otherValue) {
  return something;
}

Example 3: not equal to sign in js

let a=12
if(a!=5){
  console.log(true)
}
since a is not equal to 5, it will print true

Example 4: equal to or more than javascript

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

Example 5: javascript not equal

0 !== "0"
0 !== 0

Example 6: less than equal to in javascript

| <= | less than or equal to |	x <= 8 | true |

Tags:

Misc Example