js less than code example
Example 1: js greater than or equal to
>=
<=
>
<
==
===
!=
!==
Example 2: 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 3: js ===
5 =='5'
5 === '5'
Example 4: equal to or more than javascript
a >= b
a <= b
Example 5: js < less then
const a = 5, b = 2, c = 'hello';
console.log(a == 5);
console.log(b == '2');
console.log(c == 'Hello');
Example 6: js !==
var x = 5;
x === 5 returns true
x === "5" returns false
x !== 5 returns false
x !== "5" returns true
x !== 8 returns true