Format a number, with comma-separated thousands and custom precision/decimal places.
Usage:
// Default usageformatNumber(5318008);// => 5,318,008// Custom formatformatNumber(9876543.21, { precision: 3, thousand: " " });// => 9 876 543.210 Copy
// Default usageformatNumber(5318008);// => 5,318,008// Custom formatformatNumber(9876543.21, { precision: 3, thousand: " " });// => 9 876 543.210
Number to be formatted
Optional
Object containing all the options of the method
Format a number, with comma-separated thousands and custom precision/decimal places.
Usage: