<=
This operator check thats a value is less than or equal to another value.
console.log(2 <= 3); // true console.log(2 <= 2); //true