valueOf()
Returns the primitive value of a specified Minimum object
Minimum.prototype.valueOf()
Minimum.prototype.valueOf()Return type
Returns
Example usage
Last updated
Returns the primitive value of a specified Minimum object
Minimum.prototype.valueOf()Last updated
public valueOf(): Value {
return super.valueOf() as Value;
}// Example usage.
import { Minimum } from '@angular-package/range';
// Define constant `id`.
const id = 390;
// Returns 390 of type 390.
new Minimum(id).valueOf();