fullNumber()

Takes a number in any form and returns it as a string in its fullest form (removing exponents).

This function is valid in v2.8.0 to v2.16.0. This function has been downloaded 19 times.

Parameter

{number} num
Number to return in its fullest form.

Returns

{string|undefined}
If num is a finite number it will be returned as a number in its fullest form without exponents of any kind. If num is not a finite number undefined will be returned.

Requiring Function

This function is directly required by the following function:

  • commaNumber()
    Turns a number into a string in its fullest form with commas separating the integral part at the thousands mark, millions mark, billions mark, etc.