let x = 9;
if (5 < x < 9) {
console.log('less than 9');
}
That code returns 'less than 9', but it is actually equal to 9. What is going on ?
let x = 9;
if (5 < x < 9) {
console.log('less than 9');
}
That code returns 'less than 9', but it is actually equal to 9. What is going on ?