formatPercent
function
Formats a number as a percentage according to locale rules.
API
Description
function formatPercent( value: number, locale: string, digitsInfo?: string | undefined): string;
formatPercent
string
Formats a number as a percentage according to locale rules.
@paramvalue
number
The number to format.
@paramlocale
string
A locale code for the locale format rules to use.
@paramdigitsInfo
string | undefined
Decimal representation options, specified by a string in the following format:
{minIntegerDigits}.{minFractionDigits}-{maxFractionDigits}
. See DecimalPipe
for more details.
@returns
string
Jump to details