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