lessThan()
Checks whether the primitive value of a child class is less than the given value
Inequality.prototype.lessThan()
Inequality.prototype.lessThan()Checks whether the primitive value of a child class instance is less than the given value.
public lessThan(value: number): boolean {
return this.#less.than(value);
}Parameters
value:number
value:numberA rest parameter of the numbers to test.
Return type
Returns
The return value is a boolean indicating whether the primitive value of a child class instance is less than the given value.
Example usage
Last updated