less than equal to symbol 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: or operator in javascript

//The OR operator in Javascript is 2 verticals lines: ||

var a = true;
var b = false;

if(a || b) {
	//one of them is true, code inside this block will be executed
}

Example 3: less than or equal to javascript

if(a <= 5){
   yourFunction();
}

Example 4: javascript less than but greater than

let X = 4
let Y = 5
let Z = 8

if (Y < Z && Y > X) {
    console.log(`Y is less than Z but greater than X, or mathematically
	'X < Y < Z' or 'Z > Y > X'
	`);
}

Example 5: 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 6: less than equal to in javascript

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