Returns true if this number is within the inclusive range between min and max.
true
min
max
Example:
5.inRange(1, 10); // true 0.inRange(1, 10); // false
bool inRange(num min, num max) => this >= min && this <= max;