Check if number is between a range
bool isBetween(num start, num end) { return this >= start && this <= end; }