javascript compare 2 numbers code example
Example 1: if between two numbers javascript
if (500 < thenumber && thenumber < 600) {
// ...
}
Example 2: equal to or more than javascript
//Equal to or more than
a >= b
//Equal to or less than
a <= b