than()
Checks whether the primitive value of a specified object is less than the given value
Less.prototype.than()
Less.prototype.than()public than(value: number): boolean {
return typeof value === 'number' ? this.valueOf() < value : false;
}Parameters
Return type
Returns
Example usage
Last updated