if x-1 is greater than 5 then javascript code example
Example: greater than x but less than y javascript
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'
`);
}