Returns the multiplicative inverse (1 divided by the number).
The number to find the reciprocal of.
The reciprocal (1 / value).
Will throw an error if the input is 0.
reciprocal(2); // returns 0.5reciprocal(-4); // returns -0.25reciprocal(0); // throws Copy
reciprocal(2); // returns 0.5reciprocal(-4); // returns -0.25reciprocal(0); // throws
Returns the multiplicative inverse (1 divided by the number).