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