greater than x but less than y es6

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'
	`);
}

Source

Also in JavaScript: