Optional
numberZeroPad
Pad a number with leading zeros and zeroes after the decimal point.
0.1.39
numberZeroPad("0.0001", 3); // ➜ '000.0001' Copy
numberZeroPad("0.0001", 3); // ➜ '000.0001'
numberZeroPad("1", 3, 2); // ➜ '001.00' Copy
numberZeroPad("1", 3, 2); // ➜ '001.00'
numberZeroPad(5.123, 4); // ➜ '0005.123' Copy
numberZeroPad(5.123, 4); // ➜ '0005.123'
numberZeroPad(1234567.89, 4, 3); // ➜ '1234567.890' Copy
numberZeroPad(1234567.89, 4, 3); // ➜ '1234567.890'
Name
numberZeroPad
Description
Pad a number with leading zeros and zeroes after the decimal point.
Throws
Since
0.1.39
Example
Example
Example
Example