Optional
numberDecimalPortion
Get number decimal portion.
0.1.39
numberDecimalPortion("0.000100", false); // ➜ '000100' Copy
numberDecimalPortion("0.000100", false); // ➜ '000100'
numberDecimalPortion("1"); // ➜ '' Copy
numberDecimalPortion("1"); // ➜ ''
numberDecimalPortion(5.123); // ➜ '123' Copy
numberDecimalPortion(5.123); // ➜ '123'
numberDecimalPortion(12345678.99); // ➜ '99' Copy
numberDecimalPortion(12345678.99); // ➜ '99'
Name
numberDecimalPortion
Description
Get number decimal portion.
Throws
Since
0.1.39
Example
Example
Example
Example