1let X = 4
2let Y = 5
3let Z = 8
4
5if (Y < Z && Y > X) {
6 console.log(`Y is less than Z but greater than X, or mathematically
7 'X < Y < Z' or 'Z > Y > X'
8 `);
9}
1The greater than or equal operator ( >= ) returns true if the left operand is greater than or equal to the right operand, and false otherwise.