JSOperators

>=

Greater than equal operator

See more on MDN

This operator check thats a value is greater than or equal to another value.

console.log(2 >= 3); // false
console.log(2 >= 2); //true