The `Greater` primitive wrapper object constructor
Last updated 1 year ago
Was this helpful?
Greater()
Creates the instance with the given .
constructor(value: Value) { super(value); }
Parameters
value:
The value of generic type variable to set with a new instance.
// Example usage. import { Greater } from '@angular-package/range'; // Define constant `id`. const id = 390; // Returns Greater {390} of Greater<390>. new Greater(id);
Greater
value
Value