maxLessThan()
Checks whether the value is greater than the maximum range of a specified `Range` object
Range.prototype.maxLessThan()
Range.prototype.maxLessThan()public maxLessThan(value: number): boolean {
return this.#maximum.lessThan(value);
}Parameters
Return type
Returns
Example usage
Last updated