We can use the JavaScriptโs greater than or equal to and less than or equal to operators to check if a number is in between 2 numbers.
const between = (x, min, max) => {
return x >= min && x <= max;
}
// ...
const x = 0.002
if (between(x, 0.001, 0.009)) {
// something
}
We create the between function with the x , min and max parameters.
x is the number we want to check if itโs between min and max .
Then we call it in the if statement to see if x is between 0.001 and 0.009.
Top comments (0)