static create()
Creates the `Number` instance with the given primitive value
Number.create()
Number.create()public static create<Value extends number>(value: Value): Number<Value> {
return new this(value);
}Generic type variables
Parameters
value:Value
value:ValueReturn type
Returns
Example usage
Last updated