Checks if the number is between min and max inclusively.
min
max
bool isBetween(num min, num max) => this >= min && this <= max;