⚠ getMax()
Gets the maximum range of a specified `Range` object
Range.prototype.getMax()
Range.prototype.getMax()public getMax(): Max {
return this.#maximum.valueOf();
}Return type
Returns
Example usage
// Example usage.
import { Range } from '@angular-package/range';
// Create new instance.
const range = new Range(4, 27);
// Returns 27 of type 27.
range.getMax();Last updated