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