lessThan()

Checks whether the primitive value of a child class is less than the given value

Inequality.prototype.lessThan()

Checks whether the primitive valuearrow-up-right of a child class instance is less than the given value.

inequality.class.ts
public lessThan(value: number): boolean {
  return this.#less.than(value);
}

Parameters

A rest parameterarrow-up-right of the numbers to test.

Return type

Returns

The return value is a booleanarrow-up-right indicating whether the primitive valuearrow-up-right of a child class instance is less than the given value.

Example usage

Last updated