• Overview
@angular/common

formatNumber

function

Formats a number as text, with group sizing, separator, and other parameters based on the locale.

  
    function formatNumber(  value: number,  locale: string,  digitsInfo?: string | undefined): string;
  
  

formatNumber

string

Formats a number as text, with group sizing, separator, and other parameters based on the locale.

@paramvaluenumber

The number to format.

@paramlocalestring

A locale code for the locale format rules to use.

@paramdigitsInfostring | undefined

Decimal representation options, specified by a string in the following format: {minIntegerDigits}.{minFractionDigits}-{maxFractionDigits}. See DecimalPipe for more details.

@returnsstring
Jump to details