Shorten the decimal part of a number or amount string
Optional
shortenDecimals(100.123456789) // '100.123'shortenDecimals('100.123456789', 2) // '100.12'shortenDecimals('100.123456789', 2, true) // '100.12' Copy
shortenDecimals(100.123456789) // '100.123'shortenDecimals('100.123456789', 2) // '100.12'shortenDecimals('100.123456789', 2, true) // '100.12'
Shorten the decimal part of a number or amount string