get max()
The `get` accessor obtains the maximum range
RangeError.prototype.max
RangeError.prototype.maxpublic get max(): Max | undefined {
return this.#max;
}Return type
Returns
Example usage
// Example usage.
import { RangeError } from '@angular-package/error';
// Returns "27".
new RangeError('problem', 'Fix accessor.', '(AE:427)', 9, 27).max;Last updated