Returns whether this number falls within the range min to max, inclusive.
min
max
bool isBetween(num min, num max) => this >= min && this <= max;