Skip to main content

commaizeNumber

Separates the given value by comma.

function commaizeNumber(value: number | string): string;

Example

commaizeNumber(13209802); // '13,209,802'
commaizeNumber('13209802'); // '13,209,802'